Initial commit

This commit is contained in:
Ahrom
2025-11-16 12:43:07 +03:30
commit 4bbe56b83f
16778 changed files with 1914371 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
<?php
require_once('traits/ImportTrait.php');
require_once('traits/SingleImportTestingTrait.php');
use Mockery as m;
use Maatwebsite\Excel\Readers\LaravelExcelReader;
use Maatwebsite\Excel\Classes;
class XlsReaderTest extends TestCase {
/**
* Import trait
*/
use ImportTrait, SingleImportTestingTrait;
/**
* Filename
* @var string
*/
protected $fileName = 'files/test.xls';
}