13 lines
322 B
PHP
13 lines
322 B
PHP
<?php
|
|
|
|
use Dipper\Excel\Facades\Excel;
|
|
use App\Domains\Stats\Jobs\AfterQueueExportJob;
|
|
use App\Domains\Stats\Exports\CompanyCountExport;
|
|
|
|
require_once realpath(dirname(__FILE__) . '/TestCase.php');
|
|
|
|
$conditions['limit'] = 0;
|
|
|
|
$export = new CompanyCountExport($conditions);
|
|
|
|
$res = Excel::queue($export, $export->filename); |