17 lines
245 B
Plaintext
17 lines
245 B
Plaintext
|
|
<?php
|
||
|
|
|
||
|
|
namespace DummyNamespace;
|
||
|
|
|
||
|
|
use Maatwebsite\Excel\Concerns\FromCollection;
|
||
|
|
|
||
|
|
class DummyClass implements FromCollection
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* @return \Illuminate\Support\Collection
|
||
|
|
*/
|
||
|
|
public function collection()
|
||
|
|
{
|
||
|
|
//
|
||
|
|
}
|
||
|
|
}
|