18 lines
289 B
Plaintext
18 lines
289 B
Plaintext
<?php
|
|
|
|
namespace DummyNamespace;
|
|
|
|
use Illuminate\Support\Collection;
|
|
use Maatwebsite\Excel\Concerns\ToCollection;
|
|
|
|
class DummyClass implements ToCollection
|
|
{
|
|
/**
|
|
* @param Collection $collection
|
|
*/
|
|
public function collection(Collection $collection)
|
|
{
|
|
//
|
|
}
|
|
}
|