17 lines
234 B
Plaintext
17 lines
234 B
Plaintext
|
|
<?php
|
||
|
|
|
||
|
|
namespace DummyNamespace;
|
||
|
|
|
||
|
|
use Maatwebsite\Excel\Concerns\FromQuery;
|
||
|
|
|
||
|
|
class DummyClass implements FromQuery
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* @return \Illuminate\Database\Query\Builder
|
||
|
|
*/
|
||
|
|
public function query()
|
||
|
|
{
|
||
|
|
//
|
||
|
|
}
|
||
|
|
}
|