File "FromQuery.php"
Full Path: /home/fundopuh/trader.fxex.org/vendor/maatwebsite/excel/src/Concerns/FromQuery.php
File size: 317 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Maatwebsite\Excel\Concerns;
use Illuminate\Database\Eloquent\Builder as EloquentBuilder;
use Illuminate\Database\Eloquent\Relations\Relation;
use Illuminate\Database\Query\Builder;
interface FromQuery
{
/**
* @return Builder|EloquentBuilder|Relation
*/
public function query();
}