repo
stringlengths
7
63
file_url
stringlengths
81
284
file_path
stringlengths
5
200
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-04 15:02:33
2026-01-05 05:24:06
truncated
bool
2 classes
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/ExcelServiceProviderTest.php
tests/ExcelServiceProviderTest.php
<?php namespace Maatwebsite\Excel\Tests; use Composer\InstalledVersions; use Composer\Semver\VersionParser; use Illuminate\Contracts\Console\Kernel; use Maatwebsite\Excel\Cache\MemoryCache; use Maatwebsite\Excel\Cache\MemoryCacheDeprecated; use Maatwebsite\Excel\Excel; use Maatwebsite\Excel\Tests\Data\Stubs\CustomTra...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/InteractsWithQueueTest.php
tests/InteractsWithQueueTest.php
<?php namespace Maatwebsite\Excel\Tests; use Illuminate\Queue\InteractsWithQueue; use Maatwebsite\Excel\Jobs\AppendDataToSheet; use Maatwebsite\Excel\Jobs\AppendQueryToSheet; use Maatwebsite\Excel\Jobs\AppendViewToSheet; use Maatwebsite\Excel\Jobs\QueueExport; use Maatwebsite\Excel\Jobs\ReadChunk; class InteractsWit...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/TemporaryFileTest.php
tests/TemporaryFileTest.php
<?php namespace Maatwebsite\Excel\Tests; use Maatwebsite\Excel\Files\TemporaryFileFactory; use Maatwebsite\Excel\Tests\Helpers\FileHelper; class TemporaryFileTest extends TestCase { private $defaultDirectoryPermissions; private $defaultFilePermissions; /** * Setup the test environment. */ ...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/QueuedImportTest.php
tests/QueuedImportTest.php
<?php namespace Maatwebsite\Excel\Tests; use Illuminate\Foundation\Bus\PendingDispatch; use Illuminate\Queue\Events\JobExceptionOccurred; use Illuminate\Queue\Events\JobProcessed; use Illuminate\Queue\Events\JobProcessing; use Illuminate\Support\Facades\Bus; use Illuminate\Support\Facades\Queue; use Maatwebsite\Excel...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/QueuedQueryExportTest.php
tests/QueuedQueryExportTest.php
<?php namespace Maatwebsite\Excel\Tests; use Maatwebsite\Excel\SettingsProvider; use Maatwebsite\Excel\Tests\Data\Stubs\AfterQueueExportJob; use Maatwebsite\Excel\Tests\Data\Stubs\Database\User; use Maatwebsite\Excel\Tests\Data\Stubs\FromUsersQueryExport; use Maatwebsite\Excel\Tests\Data\Stubs\FromUsersQueryExportWit...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/ExcelTest.php
tests/ExcelTest.php
<?php namespace Maatwebsite\Excel\Tests; use Illuminate\Contracts\View\View; use Illuminate\Http\UploadedFile; use Illuminate\Support\Collection; use Maatwebsite\Excel\Concerns\Exportable; use Maatwebsite\Excel\Concerns\FromCollection; use Maatwebsite\Excel\Concerns\FromView; use Maatwebsite\Excel\Concerns\Importable...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/QueuedExportTest.php
tests/QueuedExportTest.php
<?php namespace Maatwebsite\Excel\Tests; use Illuminate\Queue\Events\JobProcessing; use Illuminate\Support\Facades\Cache; use Illuminate\Support\Facades\Queue; use Maatwebsite\Excel\Excel; use Maatwebsite\Excel\Files\RemoteTemporaryFile; use Maatwebsite\Excel\Files\TemporaryFile; use Maatwebsite\Excel\Jobs\AppendData...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Helpers/FileHelper.php
tests/Helpers/FileHelper.php
<?php namespace Maatwebsite\Excel\Tests\Helpers; class FileHelper { public static function absolutePath($fileName, $diskName) { return config('filesystems.disks.' . $diskName . '.root') . DIRECTORY_SEPARATOR . $fileName; } public static function recursiveDelete($fileName) { if (is...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Mixins/StoreCollectionTest.php
tests/Mixins/StoreCollectionTest.php
<?php namespace Maatwebsite\Excel\Tests\Mixins; use Illuminate\Support\Collection; use Maatwebsite\Excel\Excel; use Maatwebsite\Excel\Tests\Data\Stubs\Database\User; use Maatwebsite\Excel\Tests\TestCase; class StoreCollectionTest extends TestCase { public function test_can_store_a_collection_as_excel() { ...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Mixins/DownloadCollectionTest.php
tests/Mixins/DownloadCollectionTest.php
<?php namespace Maatwebsite\Excel\Tests\Mixins; use Illuminate\Support\Collection; use Maatwebsite\Excel\Excel; use Maatwebsite\Excel\Tests\Data\Stubs\Database\User; use Maatwebsite\Excel\Tests\TestCase; use Symfony\Component\HttpFoundation\BinaryFileResponse; class DownloadCollectionTest extends TestCase { publ...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Mixins/ImportAsMacroTest.php
tests/Mixins/ImportAsMacroTest.php
<?php namespace Maatwebsite\Excel\Tests\Mixins; use Maatwebsite\Excel\Tests\Data\Stubs\Database\User; use Maatwebsite\Excel\Tests\TestCase; class ImportAsMacroTest extends TestCase { /** * Setup the test environment. */ protected function setUp(): void { parent::setUp(); $this-...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Mixins/DownloadQueryMacroTest.php
tests/Mixins/DownloadQueryMacroTest.php
<?php namespace Maatwebsite\Excel\Tests\Mixins; use Maatwebsite\Excel\Excel; use Maatwebsite\Excel\Tests\Data\Stubs\Database\User; use Maatwebsite\Excel\Tests\TestCase; use Symfony\Component\HttpFoundation\BinaryFileResponse; class DownloadQueryMacroTest extends TestCase { /** * Setup the test environment. ...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Mixins/ImportMacroTest.php
tests/Mixins/ImportMacroTest.php
<?php namespace Maatwebsite\Excel\Tests\Mixins; use Maatwebsite\Excel\Tests\Data\Stubs\Database\User; use Maatwebsite\Excel\Tests\TestCase; class ImportMacroTest extends TestCase { /** * Setup the test environment. */ protected function setUp(): void { parent::setUp(); $this->l...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Mixins/StoreQueryMacroTest.php
tests/Mixins/StoreQueryMacroTest.php
<?php namespace Maatwebsite\Excel\Tests\Mixins; use Maatwebsite\Excel\Excel; use Maatwebsite\Excel\Tests\Data\Stubs\Database\User; use Maatwebsite\Excel\Tests\TestCase; class StoreQueryMacroTest extends TestCase { /** * Setup the test environment. */ protected function setUp(): void { p...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Cache/BatchCacheTest.php
tests/Cache/BatchCacheTest.php
<?php namespace Maatwebsite\Excel\Tests\Cache; use Composer\InstalledVersions; use Composer\Semver\VersionParser; use DateInterval; use Illuminate\Cache\ArrayStore; use Illuminate\Cache\Events\KeyWritten; use Illuminate\Cache\Repository; use Illuminate\Support\Facades\Event; use Maatwebsite\Excel\Cache\BatchCache; us...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Concerns/WithLimitTest.php
tests/Concerns/WithLimitTest.php
<?php namespace Maatwebsite\Excel\Tests\Concerns; use Illuminate\Database\Eloquent\Model; use Maatwebsite\Excel\Concerns\Importable; use Maatwebsite\Excel\Concerns\ToArray; use Maatwebsite\Excel\Concerns\ToModel; use Maatwebsite\Excel\Concerns\WithHeadingRow; use Maatwebsite\Excel\Concerns\WithLimit; use Maatwebsite\...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Concerns/WithColumnFormattingTest.php
tests/Concerns/WithColumnFormattingTest.php
<?php namespace Maatwebsite\Excel\Tests\Concerns; use Carbon\Carbon; use Composer\InstalledVersions; use Composer\Semver\VersionParser; use Illuminate\Support\Collection; use Maatwebsite\Excel\Concerns\Exportable; use Maatwebsite\Excel\Concerns\FromCollection; use Maatwebsite\Excel\Concerns\WithColumnFormatting; use ...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Concerns/WithPropertiesTest.php
tests/Concerns/WithPropertiesTest.php
<?php namespace Maatwebsite\Excel\Tests\Concerns; use Maatwebsite\Excel\Concerns\Exportable; use Maatwebsite\Excel\Concerns\WithProperties; use Maatwebsite\Excel\Tests\TestCase; class WithPropertiesTest extends TestCase { public function test_can_set_custom_document_properties() { $export = new class...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Concerns/WithStylesTest.php
tests/Concerns/WithStylesTest.php
<?php namespace Maatwebsite\Excel\Tests\Concerns; use Maatwebsite\Excel\Concerns\Exportable; use Maatwebsite\Excel\Concerns\FromArray; use Maatwebsite\Excel\Concerns\WithStyles; use Maatwebsite\Excel\Tests\TestCase; use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; class WithStylesTest extends TestCase { public ...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Concerns/WithConditionalSheetsTest.php
tests/Concerns/WithConditionalSheetsTest.php
<?php namespace Maatwebsite\Excel\Tests\Concerns; use Maatwebsite\Excel\Concerns\Importable; use Maatwebsite\Excel\Concerns\ToArray; use Maatwebsite\Excel\Concerns\WithConditionalSheets; use Maatwebsite\Excel\Concerns\WithMultipleSheets; use Maatwebsite\Excel\Tests\TestCase; class WithConditionalSheetsTest extends T...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Concerns/WithDefaultStylesTest.php
tests/Concerns/WithDefaultStylesTest.php
<?php namespace Maatwebsite\Excel\Tests\Concerns; use Maatwebsite\Excel\Concerns\Exportable; use Maatwebsite\Excel\Concerns\FromArray; use Maatwebsite\Excel\Concerns\WithDefaultStyles; use Maatwebsite\Excel\Tests\TestCase; use PhpOffice\PhpSpreadsheet\Style\Fill; use PhpOffice\PhpSpreadsheet\Style\Style; class WithD...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Concerns/WithCalculatedFormulasTest.php
tests/Concerns/WithCalculatedFormulasTest.php
<?php namespace Maatwebsite\Excel\Tests\Concerns; use Illuminate\Database\Eloquent\Model; use Maatwebsite\Excel\Concerns\HasReferencesToOtherSheets; use Maatwebsite\Excel\Concerns\Importable; use Maatwebsite\Excel\Concerns\SkipsEmptyRows; use Maatwebsite\Excel\Concerns\ToArray; use Maatwebsite\Excel\Concerns\ToModel;...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Concerns/WithFormatDataTest.php
tests/Concerns/WithFormatDataTest.php
<?php namespace Maatwebsite\Excel\Tests\Concerns; use Illuminate\Support\Collection; use Maatwebsite\Excel\Concerns\Importable; use Maatwebsite\Excel\Concerns\SkipsEmptyRows; use Maatwebsite\Excel\Concerns\ToArray; use Maatwebsite\Excel\Concerns\ToCollection; use Maatwebsite\Excel\Concerns\ToModel; use Maatwebsite\Ex...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Concerns/WithColumnWidthsTest.php
tests/Concerns/WithColumnWidthsTest.php
<?php namespace Maatwebsite\Excel\Tests\Concerns; use Maatwebsite\Excel\Concerns\Exportable; use Maatwebsite\Excel\Concerns\FromArray; use Maatwebsite\Excel\Concerns\WithColumnWidths; use Maatwebsite\Excel\Tests\TestCase; class WithColumnWidthsTest extends TestCase { public function test_can_set_column_width() ...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Concerns/WithTitleTest.php
tests/Concerns/WithTitleTest.php
<?php namespace Maatwebsite\Excel\Tests\Concerns; use Maatwebsite\Excel\Concerns\Exportable; use Maatwebsite\Excel\Concerns\WithMultipleSheets; use Maatwebsite\Excel\Concerns\WithTitle; use Maatwebsite\Excel\Tests\Data\Stubs\WithTitleExport; use Maatwebsite\Excel\Tests\TestCase; class WithTitleTest extends TestCase ...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Concerns/RemembersChunkOffsetTest.php
tests/Concerns/RemembersChunkOffsetTest.php
<?php namespace Maatwebsite\Excel\Tests\Concerns; use Maatwebsite\Excel\Concerns\Importable; use Maatwebsite\Excel\Concerns\RemembersChunkOffset; use Maatwebsite\Excel\Concerns\ToArray; use Maatwebsite\Excel\Concerns\WithChunkReading; use Maatwebsite\Excel\Tests\TestCase; class RemembersChunkOffsetTest extends TestC...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Concerns/FromArrayTest.php
tests/Concerns/FromArrayTest.php
<?php namespace Maatwebsite\Excel\Tests\Concerns; use Maatwebsite\Excel\Concerns\Exportable; use Maatwebsite\Excel\Concerns\FromArray; use Maatwebsite\Excel\Tests\TestCase; class FromArrayTest extends TestCase { public function test_can_export_from_array() { $export = new class implements FromArray ...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Concerns/WithSkipDuplicatesTest.php
tests/Concerns/WithSkipDuplicatesTest.php
<?php namespace Maatwebsite\Excel\Tests\Concerns; use Illuminate\Database\Eloquent\Model; use Illuminate\Support\Facades\DB; use Maatwebsite\Excel\Concerns\Importable; use Maatwebsite\Excel\Concerns\ToModel; use Maatwebsite\Excel\Concerns\WithBatchInserts; use Maatwebsite\Excel\Concerns\WithSkipDuplicates; use Maatwe...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Concerns/FromViewTest.php
tests/Concerns/FromViewTest.php
<?php namespace Maatwebsite\Excel\Tests\Concerns; use Illuminate\Contracts\View\View; use Illuminate\Support\Collection; use Maatwebsite\Excel\Concerns\Exportable; use Maatwebsite\Excel\Concerns\FromView; use Maatwebsite\Excel\Concerns\WithMultipleSheets; use Maatwebsite\Excel\Tests\Data\Stubs\Database\User; use Maat...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Concerns/WithEventsTest.php
tests/Concerns/WithEventsTest.php
<?php namespace Maatwebsite\Excel\Tests\Concerns; use Illuminate\Foundation\Testing\WithFaker; use Illuminate\Support\Str; use Maatwebsite\Excel\Concerns\Exportable; use Maatwebsite\Excel\Events\AfterBatch; use Maatwebsite\Excel\Events\AfterChunk; use Maatwebsite\Excel\Events\AfterImport; use Maatwebsite\Excel\Events...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Concerns/RemembersRowNumberTest.php
tests/Concerns/RemembersRowNumberTest.php
<?php namespace Maatwebsite\Excel\Tests\Concerns; use Maatwebsite\Excel\Concerns\Importable; use Maatwebsite\Excel\Concerns\RemembersRowNumber; use Maatwebsite\Excel\Concerns\ToModel; use Maatwebsite\Excel\Concerns\WithBatchInserts; use Maatwebsite\Excel\Concerns\WithChunkReading; use Maatwebsite\Excel\Tests\TestCase...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Concerns/ToModelTest.php
tests/Concerns/ToModelTest.php
<?php namespace Maatwebsite\Excel\Tests\Concerns; use Faker\Factory; use Illuminate\Database\Eloquent\Model; use Illuminate\Support\Collection; use Illuminate\Support\Facades\DB; use Maatwebsite\Excel\Concerns\Importable; use Maatwebsite\Excel\Concerns\PersistRelations; use Maatwebsite\Excel\Concerns\ToModel; use Maa...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Concerns/SkipsOnFailureTest.php
tests/Concerns/SkipsOnFailureTest.php
<?php namespace Maatwebsite\Excel\Tests\Concerns; use Illuminate\Database\Eloquent\Model; use Illuminate\Support\Collection; use Illuminate\Validation\Rule; use Maatwebsite\Excel\Concerns\Importable; use Maatwebsite\Excel\Concerns\OnEachRow; use Maatwebsite\Excel\Concerns\SkipsFailures; use Maatwebsite\Excel\Concerns...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Concerns/ShouldQueueWithoutChainTest.php
tests/Concerns/ShouldQueueWithoutChainTest.php
<?php use Illuminate\Queue\Events\JobProcessed; use Illuminate\Queue\SyncQueue; use Illuminate\Support\Facades\Event; use Illuminate\Support\Facades\Queue; use Maatwebsite\Excel\Jobs\AfterImportJob; use Maatwebsite\Excel\Jobs\QueueImport; use Maatwebsite\Excel\Jobs\ReadChunk; use Maatwebsite\Excel\Tests\Data\Stubs\Que...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Concerns/WithMultipleSheetsTest.php
tests/Concerns/WithMultipleSheetsTest.php
<?php namespace Maatwebsite\Excel\Tests\Concerns; use Illuminate\Support\Collection; use Maatwebsite\Excel\Concerns\Exportable; use Maatwebsite\Excel\Concerns\Importable; use Maatwebsite\Excel\Concerns\SkipsUnknownSheets; use Maatwebsite\Excel\Concerns\ToArray; use Maatwebsite\Excel\Concerns\WithMultipleSheets; use M...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Concerns/WithBatchInsertsTest.php
tests/Concerns/WithBatchInsertsTest.php
<?php namespace Maatwebsite\Excel\Tests\Concerns; use Illuminate\Database\Eloquent\Model; use Illuminate\Support\Facades\DB; use Maatwebsite\Excel\Concerns\Importable; use Maatwebsite\Excel\Concerns\ToModel; use Maatwebsite\Excel\Concerns\WithBatchInserts; use Maatwebsite\Excel\Tests\Data\Stubs\Database\Group; use Ma...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Concerns/OnEachRowTest.php
tests/Concerns/OnEachRowTest.php
<?php namespace Maatwebsite\Excel\Tests\Concerns; use Maatwebsite\Excel\Concerns\Importable; use Maatwebsite\Excel\Concerns\OnEachRow; use Maatwebsite\Excel\Row; use Maatwebsite\Excel\Tests\TestCase; use PHPUnit\Framework\Assert; class OnEachRowTest extends TestCase { public function test_can_import_each_row_ind...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Concerns/WithCustomCsvSettingsTest.php
tests/Concerns/WithCustomCsvSettingsTest.php
<?php namespace Maatwebsite\Excel\Tests\Concerns; use Illuminate\Support\Collection; use Maatwebsite\Excel\Concerns\FromCollection; use Maatwebsite\Excel\Concerns\ToArray; use Maatwebsite\Excel\Concerns\WithCustomCsvSettings; use Maatwebsite\Excel\Excel; use Maatwebsite\Excel\HeadingRowImport; use Maatwebsite\Excel\T...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Concerns/WithCustomStartCellTest.php
tests/Concerns/WithCustomStartCellTest.php
<?php namespace Maatwebsite\Excel\Tests\Concerns; use Illuminate\Support\Collection; use Maatwebsite\Excel\Concerns\FromCollection; use Maatwebsite\Excel\Concerns\WithCustomStartCell; use Maatwebsite\Excel\Excel; use Maatwebsite\Excel\Tests\TestCase; class WithCustomStartCellTest extends TestCase { /** * @v...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Concerns/WithMappingTest.php
tests/Concerns/WithMappingTest.php
<?php namespace Maatwebsite\Excel\Tests\Concerns; use Maatwebsite\Excel\Concerns\Exportable; use Maatwebsite\Excel\Concerns\FromArray; use Maatwebsite\Excel\Concerns\WithMapping; use Maatwebsite\Excel\Tests\Data\Stubs\WithMappingExport; use Maatwebsite\Excel\Tests\TestCase; class WithMappingTest extends TestCase { ...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Concerns/WithValidationTest.php
tests/Concerns/WithValidationTest.php
<?php namespace Maatwebsite\Excel\Tests\Concerns; use Illuminate\Database\Eloquent\Model; use Illuminate\Support\Collection; use Illuminate\Validation\Rule; use Maatwebsite\Excel\Concerns\Importable; use Maatwebsite\Excel\Concerns\OnEachRow; use Maatwebsite\Excel\Concerns\SkipsEmptyRows; use Maatwebsite\Excel\Concern...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Concerns/WithHeadingRowTest.php
tests/Concerns/WithHeadingRowTest.php
<?php namespace Maatwebsite\Excel\Tests\Concerns; use Illuminate\Database\Eloquent\Model; use Illuminate\Support\Collection; use Maatwebsite\Excel\Concerns\Importable; use Maatwebsite\Excel\Concerns\ToArray; use Maatwebsite\Excel\Concerns\ToCollection; use Maatwebsite\Excel\Concerns\ToModel; use Maatwebsite\Excel\Con...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Concerns/WithStartRowTest.php
tests/Concerns/WithStartRowTest.php
<?php namespace Maatwebsite\Excel\Tests\Concerns; use Illuminate\Database\Eloquent\Model; use Maatwebsite\Excel\Concerns\Importable; use Maatwebsite\Excel\Concerns\ToArray; use Maatwebsite\Excel\Concerns\ToModel; use Maatwebsite\Excel\Concerns\WithStartRow; use Maatwebsite\Excel\Tests\Data\Stubs\Database\User; use Ma...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Concerns/WithGroupedHeadingRowTest.php
tests/Concerns/WithGroupedHeadingRowTest.php
<?php namespace Maatwebsite\Excel\Tests\Concerns; use Illuminate\Database\Eloquent\Model; use Illuminate\Support\Collection; use Maatwebsite\Excel\Concerns\Importable; use Maatwebsite\Excel\Concerns\OnEachRow; use Maatwebsite\Excel\Concerns\ToArray; use Maatwebsite\Excel\Concerns\ToCollection; use Maatwebsite\Excel\C...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Concerns/WithStrictNullComparisonTest.php
tests/Concerns/WithStrictNullComparisonTest.php
<?php namespace Maatwebsite\Excel\Tests\Concerns; use Illuminate\Support\Collection; use Maatwebsite\Excel\Concerns\Exportable; use Maatwebsite\Excel\Concerns\FromCollection; use Maatwebsite\Excel\Concerns\WithHeadings; use Maatwebsite\Excel\Concerns\WithStrictNullComparison; use Maatwebsite\Excel\Tests\TestCase; cl...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Concerns/RegistersEventListenersTest.php
tests/Concerns/RegistersEventListenersTest.php
<?php namespace Maatwebsite\Excel\Tests\Concerns; use Maatwebsite\Excel\Events\AfterSheet; use Maatwebsite\Excel\Events\BeforeExport; use Maatwebsite\Excel\Events\BeforeImport; use Maatwebsite\Excel\Events\BeforeSheet; use Maatwebsite\Excel\Events\BeforeWriting; use Maatwebsite\Excel\Reader; use Maatwebsite\Excel\She...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Concerns/FromIteratorTest.php
tests/Concerns/FromIteratorTest.php
<?php namespace Maatwebsite\Excel\Tests\Concerns; use ArrayIterator; use Iterator; use Maatwebsite\Excel\Concerns\Exportable; use Maatwebsite\Excel\Concerns\FromIterator; use Maatwebsite\Excel\Tests\TestCase; class FromIteratorTest extends TestCase { public function test_can_export_from_iterator() { ...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Concerns/WithColumnLimitTest.php
tests/Concerns/WithColumnLimitTest.php
<?php namespace Maatwebsite\Excel\Tests\Concerns; use Maatwebsite\Excel\Concerns\Importable; use Maatwebsite\Excel\Concerns\SkipsEmptyRows; use Maatwebsite\Excel\Concerns\ToArray; use Maatwebsite\Excel\Concerns\WithColumnLimit; use Maatwebsite\Excel\Tests\TestCase; use PHPUnit\Framework\Assert; class WithColumnLimit...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Concerns/ImportableTest.php
tests/Concerns/ImportableTest.php
<?php namespace Maatwebsite\Excel\Tests\Concerns; use Illuminate\Contracts\Filesystem\FileNotFoundException; use Maatwebsite\Excel\Concerns\Importable; use Maatwebsite\Excel\Concerns\ToArray; use Maatwebsite\Excel\Excel; use Maatwebsite\Excel\Importer; use Maatwebsite\Excel\Tests\TestCase; use PHPUnit\Framework\Asser...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Concerns/WithCustomQuerySizeTest.php
tests/Concerns/WithCustomQuerySizeTest.php
<?php namespace Maatwebsite\Excel\Tests\Concerns; use Maatwebsite\Excel\Tests\Data\Stubs\AfterQueueExportJob; use Maatwebsite\Excel\Tests\Data\Stubs\Database\Group; use Maatwebsite\Excel\Tests\Data\Stubs\Database\User; use Maatwebsite\Excel\Tests\Data\Stubs\FromQueryWithCustomQuerySize; use Maatwebsite\Excel\Tests\Te...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Concerns/ExportableTest.php
tests/Concerns/ExportableTest.php
<?php namespace Maatwebsite\Excel\Tests\Concerns; use Illuminate\Contracts\Support\Responsable; use Illuminate\Http\Request; use Maatwebsite\Excel\Concerns\Exportable; use Maatwebsite\Excel\Excel; use Maatwebsite\Excel\Exporter; use Maatwebsite\Excel\Tests\Data\Stubs\EmptyExport; use Maatwebsite\Excel\Tests\TestCase;...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Concerns/WithCustomValueBinderTest.php
tests/Concerns/WithCustomValueBinderTest.php
<?php namespace Maatwebsite\Excel\Tests\Concerns; use Carbon\Carbon; use Illuminate\Support\Collection; use Maatwebsite\Excel\Concerns\Exportable; use Maatwebsite\Excel\Concerns\FromCollection; use Maatwebsite\Excel\Concerns\ToArray; use Maatwebsite\Excel\Concerns\WithCustomValueBinder; use Maatwebsite\Excel\Excel; u...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Concerns/WithReadFilterTest.php
tests/Concerns/WithReadFilterTest.php
<?php namespace Maatwebsite\Excel\Tests\Concerns; use Maatwebsite\Excel\Concerns\Importable; use Maatwebsite\Excel\Concerns\WithReadFilter; use Maatwebsite\Excel\Tests\TestCase; use PhpOffice\PhpSpreadsheet\Reader\IReadFilter; use PHPUnit\Framework\Assert; class WithReadFilterTest extends TestCase { public funct...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Concerns/WithMappedCellsTest.php
tests/Concerns/WithMappedCellsTest.php
<?php namespace Maatwebsite\Excel\Tests\Concerns; use Illuminate\Support\Str; use Maatwebsite\Excel\Concerns\Importable; use Maatwebsite\Excel\Concerns\ToArray; use Maatwebsite\Excel\Concerns\ToModel; use Maatwebsite\Excel\Concerns\WithMappedCells; use Maatwebsite\Excel\Tests\Data\Stubs\Database\User; use Maatwebsite...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Concerns/WithBackgroundColorTest.php
tests/Concerns/WithBackgroundColorTest.php
<?php namespace Maatwebsite\Excel\Tests\Concerns; use Maatwebsite\Excel\Concerns\Exportable; use Maatwebsite\Excel\Concerns\WithBackgroundColor; use Maatwebsite\Excel\Tests\TestCase; use PhpOffice\PhpSpreadsheet\Style\Color; use PhpOffice\PhpSpreadsheet\Style\Fill; class WithBackgroundColorTest extends TestCase { ...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Concerns/FromGeneratorTest.php
tests/Concerns/FromGeneratorTest.php
<?php namespace Maatwebsite\Excel\Tests\Concerns; use Generator; use Maatwebsite\Excel\Concerns\Exportable; use Maatwebsite\Excel\Concerns\FromGenerator; use Maatwebsite\Excel\Tests\TestCase; class FromGeneratorTest extends TestCase { public function test_can_export_from_generator() { $export = new c...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Concerns/WithUpsertsTest.php
tests/Concerns/WithUpsertsTest.php
<?php namespace Maatwebsite\Excel\Tests\Concerns; use Illuminate\Database\Eloquent\Builder; use Illuminate\Database\Eloquent\Model; use Illuminate\Support\Facades\DB; use Maatwebsite\Excel\Concerns\Importable; use Maatwebsite\Excel\Concerns\ToModel; use Maatwebsite\Excel\Concerns\WithBatchInserts; use Maatwebsite\Exc...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Concerns/SkipsOnErrorTest.php
tests/Concerns/SkipsOnErrorTest.php
<?php namespace Maatwebsite\Excel\Tests\Concerns; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\QueryException; use Illuminate\Validation\Rule; use Maatwebsite\Excel\Concerns\Importable; use Maatwebsite\Excel\Concerns\OnEachRow; use Maatwebsite\Excel\Concerns\SkipsErrors; use Maatwebsite\Excel\Conce...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Concerns/FromCollectionTest.php
tests/Concerns/FromCollectionTest.php
<?php namespace Maatwebsite\Excel\Tests\Concerns; use Illuminate\Foundation\Bus\PendingDispatch; use Maatwebsite\Excel\Tests\Data\Stubs\EloquentLazyCollectionExport; use Maatwebsite\Excel\Tests\Data\Stubs\EloquentLazyCollectionQueuedExport; use Maatwebsite\Excel\Tests\Data\Stubs\QueuedExport; use Maatwebsite\Excel\Te...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Concerns/ToArrayTest.php
tests/Concerns/ToArrayTest.php
<?php namespace Maatwebsite\Excel\Tests\Concerns; use Maatwebsite\Excel\Concerns\Importable; use Maatwebsite\Excel\Concerns\ToArray; use Maatwebsite\Excel\Tests\TestCase; use PHPUnit\Framework\Assert; class ToArrayTest extends TestCase { public function test_can_import_to_array() { $import = new clas...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Concerns/FromQueryTest.php
tests/Concerns/FromQueryTest.php
<?php namespace Maatwebsite\Excel\Tests\Concerns; use Illuminate\Support\Facades\DB; use Maatwebsite\Excel\Tests\Data\Stubs\Database\Group; use Maatwebsite\Excel\Tests\Data\Stubs\Database\User; use Maatwebsite\Excel\Tests\Data\Stubs\FromGroupUsersQueuedQueryExport; use Maatwebsite\Excel\Tests\Data\Stubs\FromNestedArr...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Concerns/WithHeadingsTest.php
tests/Concerns/WithHeadingsTest.php
<?php namespace Maatwebsite\Excel\Tests\Concerns; use Illuminate\Support\Collection; use Maatwebsite\Excel\Concerns\Exportable; use Maatwebsite\Excel\Concerns\FromCollection; use Maatwebsite\Excel\Concerns\WithCustomStartCell; use Maatwebsite\Excel\Concerns\WithHeadings; use Maatwebsite\Excel\Tests\TestCase; class W...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Concerns/ToCollectionTest.php
tests/Concerns/ToCollectionTest.php
<?php namespace Maatwebsite\Excel\Tests\Concerns; use Illuminate\Support\Collection; use Maatwebsite\Excel\Concerns\Importable; use Maatwebsite\Excel\Concerns\ToCollection; use Maatwebsite\Excel\Tests\TestCase; use PHPUnit\Framework\Assert; class ToCollectionTest extends TestCase { public function test_can_impor...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Concerns/WithChunkReadingTest.php
tests/Concerns/WithChunkReadingTest.php
<?php namespace Maatwebsite\Excel\Tests\Concerns; use DateTime; use Exception; use Illuminate\Database\Eloquent\Model; use Illuminate\Support\Facades\DB; use Maatwebsite\Excel\Concerns\Importable; use Maatwebsite\Excel\Concerns\ToArray; use Maatwebsite\Excel\Concerns\ToModel; use Maatwebsite\Excel\Concerns\WithBatchI...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Concerns/SkipsEmptyRowsTest.php
tests/Concerns/SkipsEmptyRowsTest.php
<?php namespace Maatwebsite\Excel\Tests\Concerns; use Illuminate\Database\Eloquent\Model; use Illuminate\Support\Collection; use Maatwebsite\Excel\Concerns\Importable; use Maatwebsite\Excel\Concerns\OnEachRow; use Maatwebsite\Excel\Concerns\SkipsEmptyRows; use Maatwebsite\Excel\Concerns\ToCollection; use Maatwebsite\...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Validators/RowValidatorTest.php
tests/Validators/RowValidatorTest.php
<?php namespace Maatwebsite\Excel\Tests\Validators; use Illuminate\Contracts\Validation\Factory; use Maatwebsite\Excel\Tests\TestCase; use Maatwebsite\Excel\Validators\RowValidator; class RowValidatorTest extends TestCase { /** * The RowValidator instance. */ protected $validator; /** * S...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Data/Stubs/FromUsersQueryExportWithPrepareRows.php
tests/Data/Stubs/FromUsersQueryExportWithPrepareRows.php
<?php namespace Maatwebsite\Excel\Tests\Data\Stubs; use Illuminate\Database\Eloquent\Builder as EloquentBuilder; use Illuminate\Database\Eloquent\Relations\Relation; use Illuminate\Database\Query\Builder; use Illuminate\Support\Collection; use Maatwebsite\Excel\Concerns\Exportable; use Maatwebsite\Excel\Concerns\From...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Data/Stubs/AfterQueueImportJob.php
tests/Data/Stubs/AfterQueueImportJob.php
<?php namespace Maatwebsite\Excel\Tests\Data\Stubs; use Illuminate\Bus\Queueable; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Support\Facades\DB; use PHPUnit\Framework\Assert; class AfterQueueImportJob implements ShouldQueue { use Queueable; /** * @var int */ private $totalRows;...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Data/Stubs/WithMappingExport.php
tests/Data/Stubs/WithMappingExport.php
<?php namespace Maatwebsite\Excel\Tests\Data\Stubs; use Illuminate\Support\Collection; use Maatwebsite\Excel\Concerns\Exportable; use Maatwebsite\Excel\Concerns\FromCollection; use Maatwebsite\Excel\Concerns\WithMapping; class WithMappingExport implements FromCollection, WithMapping { use Exportable; /** ...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Data/Stubs/QueuedExportWithFailedEvents.php
tests/Data/Stubs/QueuedExportWithFailedEvents.php
<?php namespace Maatwebsite\Excel\Tests\Data\Stubs; use Exception; use Maatwebsite\Excel\Concerns\Exportable; use Maatwebsite\Excel\Concerns\WithEvents; use Maatwebsite\Excel\Concerns\WithMultipleSheets; use Maatwebsite\Excel\Events\BeforeExport; use PHPUnit\Framework\Assert; use Throwable; class QueuedExportWithFai...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Data/Stubs/FromUsersQueryExport.php
tests/Data/Stubs/FromUsersQueryExport.php
<?php namespace Maatwebsite\Excel\Tests\Data\Stubs; use Illuminate\Database\Eloquent\Builder as EloquentBuilder; use Illuminate\Database\Eloquent\Relations\Relation; use Illuminate\Database\Query\Builder; use Maatwebsite\Excel\Concerns\Exportable; use Maatwebsite\Excel\Concerns\FromQuery; use Maatwebsite\Excel\Concer...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Data/Stubs/FromNestedArraysQueryExport.php
tests/Data/Stubs/FromNestedArraysQueryExport.php
<?php namespace Maatwebsite\Excel\Tests\Data\Stubs; use Illuminate\Database\Eloquent\Builder as EloquentBuilder; use Illuminate\Database\Eloquent\Relations\Relation; use Illuminate\Database\Query\Builder; use Maatwebsite\Excel\Concerns\Exportable; use Maatwebsite\Excel\Concerns\FromQuery; use Maatwebsite\Excel\Concer...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Data/Stubs/SheetForUsersFromView.php
tests/Data/Stubs/SheetForUsersFromView.php
<?php namespace Maatwebsite\Excel\Tests\Data\Stubs; use Illuminate\Contracts\View\View; use Illuminate\Support\Collection; use Maatwebsite\Excel\Concerns\Exportable; use Maatwebsite\Excel\Concerns\FromView; class SheetForUsersFromView implements FromView { use Exportable; /** * @var Collection */ ...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Data/Stubs/FromQueryWithCustomQuerySize.php
tests/Data/Stubs/FromQueryWithCustomQuerySize.php
<?php namespace Maatwebsite\Excel\Tests\Data\Stubs; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Database\Eloquent\Builder as EloquentBuilder; use Illuminate\Database\Eloquent\Relations\Relation; use Illuminate\Database\Query\Builder; use Illuminate\Support\Facades\DB; use Maatwebsite\Excel\Concerns\Exp...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Data/Stubs/FromGroupUsersQueuedQueryExport.php
tests/Data/Stubs/FromGroupUsersQueuedQueryExport.php
<?php namespace Maatwebsite\Excel\Tests\Data\Stubs; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Database\Eloquent\Builder as EloquentBuilder; use Illuminate\Database\Eloquent\Relations\Relation; use Illuminate\Database\Query\Builder; use Maatwebsite\Excel\Concerns\Exportable; use Maatwebsite\Excel\Conc...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Data/Stubs/CustomTransactionHandler.php
tests/Data/Stubs/CustomTransactionHandler.php
<?php namespace Maatwebsite\Excel\Tests\Data\Stubs; use Maatwebsite\Excel\Transactions\TransactionHandler; class CustomTransactionHandler implements TransactionHandler { public function __invoke(callable $callback) { return $callback(); } }
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Data/Stubs/QueuedExport.php
tests/Data/Stubs/QueuedExport.php
<?php namespace Maatwebsite\Excel\Tests\Data\Stubs; use Maatwebsite\Excel\Concerns\Exportable; use Maatwebsite\Excel\Concerns\WithMultipleSheets; class QueuedExport implements WithMultipleSheets { use Exportable; /** * @return SheetWith100Rows[] */ public function sheets(): array { ...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Data/Stubs/QueuedExportWithLocalePreferences.php
tests/Data/Stubs/QueuedExportWithLocalePreferences.php
<?php namespace Maatwebsite\Excel\Tests\Data\Stubs; use Illuminate\Contracts\Translation\HasLocalePreference; use Illuminate\Support\Collection; use Maatwebsite\Excel\Concerns\Exportable; use Maatwebsite\Excel\Concerns\FromCollection; use Maatwebsite\Excel\Tests\Data\Stubs\Database\User; use PHPUnit\Framework\Assert;...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Data/Stubs/QueueImportWithoutJobChaining.php
tests/Data/Stubs/QueueImportWithoutJobChaining.php
<?php namespace Maatwebsite\Excel\Tests\Data\Stubs; use Maatwebsite\Excel\Concerns\Importable; use Maatwebsite\Excel\Concerns\ShouldQueueWithoutChain; use Maatwebsite\Excel\Concerns\ToModel; use Maatwebsite\Excel\Concerns\WithChunkReading; use Maatwebsite\Excel\Concerns\WithEvents; use Maatwebsite\Excel\Events\AfterI...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Data/Stubs/ChainedJobStub.php
tests/Data/Stubs/ChainedJobStub.php
<?php namespace Maatwebsite\Excel\Tests\Data\Stubs; use Illuminate\Bus\Queueable; use Illuminate\Contracts\Queue\ShouldQueue; class ChainedJobStub implements ShouldQueue { use Queueable; }
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Data/Stubs/ShouldQueueExport.php
tests/Data/Stubs/ShouldQueueExport.php
<?php namespace Maatwebsite\Excel\Tests\Data\Stubs; use Illuminate\Contracts\Queue\ShouldQueue; use Maatwebsite\Excel\Concerns\Exportable; use Maatwebsite\Excel\Concerns\WithMultipleSheets; class ShouldQueueExport implements WithMultipleSheets, ShouldQueue { use Exportable; /** * @return SheetWith100Ro...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Data/Stubs/ExportWithEventsChunks.php
tests/Data/Stubs/ExportWithEventsChunks.php
<?php namespace Maatwebsite\Excel\Tests\Data\Stubs; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Database\Eloquent\Builder; use Maatwebsite\Excel\Concerns\Exportable; use Maatwebsite\Excel\Concerns\FromQuery; use Maatwebsite\Excel\Concerns\WithCustomChunkSize; use Maatwebsite\Excel\Concerns\WithEvents; ...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Data/Stubs/ImportWithEventsChunksAndBatches.php
tests/Data/Stubs/ImportWithEventsChunksAndBatches.php
<?php namespace Maatwebsite\Excel\Tests\Data\Stubs; use Maatwebsite\Excel\Concerns\ToModel; use Maatwebsite\Excel\Concerns\WithBatchInserts; use Maatwebsite\Excel\Concerns\WithChunkReading; use Maatwebsite\Excel\Events\AfterBatch; use Maatwebsite\Excel\Events\AfterChunk; class ImportWithEventsChunksAndBatches extend...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Data/Stubs/EloquentLazyCollectionQueuedExport.php
tests/Data/Stubs/EloquentLazyCollectionQueuedExport.php
<?php namespace Maatwebsite\Excel\Tests\Data\Stubs; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Support\LazyCollection; use Maatwebsite\Excel\Concerns\Exportable; use Maatwebsite\Excel\Concerns\FromCollection; class EloquentLazyCollectionQueuedExport implements FromCollection, ShouldQueue { use Ex...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Data/Stubs/ImportWithEvents.php
tests/Data/Stubs/ImportWithEvents.php
<?php namespace Maatwebsite\Excel\Tests\Data\Stubs; use Maatwebsite\Excel\Concerns\Importable; use Maatwebsite\Excel\Concerns\WithEvents; use Maatwebsite\Excel\Events\AfterImport; use Maatwebsite\Excel\Events\AfterSheet; use Maatwebsite\Excel\Events\BeforeImport; use Maatwebsite\Excel\Events\BeforeSheet; class Impor...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Data/Stubs/QueuedImportWithFailure.php
tests/Data/Stubs/QueuedImportWithFailure.php
<?php namespace Maatwebsite\Excel\Tests\Data\Stubs; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Database\Eloquent\Model; use Maatwebsite\Excel\Concerns\Importable; use Maatwebsite\Excel\Concerns\ToModel; use Maatwebsite\Excel\Concerns\WithChunkReading; use Maatwebsite\Excel\Tests\Data\Stubs\Database\Gr...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Data/Stubs/ExportWithEvents.php
tests/Data/Stubs/ExportWithEvents.php
<?php namespace Maatwebsite\Excel\Tests\Data\Stubs; use Maatwebsite\Excel\Concerns\Exportable; use Maatwebsite\Excel\Concerns\WithEvents; use Maatwebsite\Excel\Events\AfterSheet; use Maatwebsite\Excel\Events\BeforeExport; use Maatwebsite\Excel\Events\BeforeSheet; use Maatwebsite\Excel\Events\BeforeWriting; class Exp...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Data/Stubs/FromUsersQueryExportWithEagerLoad.php
tests/Data/Stubs/FromUsersQueryExportWithEagerLoad.php
<?php namespace Maatwebsite\Excel\Tests\Data\Stubs; use Illuminate\Database\Eloquent\Builder as EloquentBuilder; use Illuminate\Database\Eloquent\Relations\Relation; use Illuminate\Database\Query\Builder; use Maatwebsite\Excel\Concerns\Exportable; use Maatwebsite\Excel\Concerns\FromQuery; use Maatwebsite\Excel\Concer...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Data/Stubs/FromUsersScoutExport.php
tests/Data/Stubs/FromUsersScoutExport.php
<?php namespace Maatwebsite\Excel\Tests\Data\Stubs; use Illuminate\Database\Eloquent\Builder as EloquentBuilder; use Illuminate\Database\Eloquent\Relations\Relation; use Illuminate\Database\Query\Builder; use Laravel\Scout\Builder as ScoutBuilder; use Maatwebsite\Excel\Concerns\Exportable; use Maatwebsite\Excel\Conce...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Data/Stubs/QueuedImport.php
tests/Data/Stubs/QueuedImport.php
<?php namespace Maatwebsite\Excel\Tests\Data\Stubs; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Database\Eloquent\Model; use Maatwebsite\Excel\Concerns\Importable; use Maatwebsite\Excel\Concerns\ToModel; use Maatwebsite\Excel\Concerns\WithBatchInserts; use Maatwebsite\Excel\Concerns\WithChunkReading; u...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Data/Stubs/EloquentLazyCollectionExport.php
tests/Data/Stubs/EloquentLazyCollectionExport.php
<?php namespace Maatwebsite\Excel\Tests\Data\Stubs; use Illuminate\Support\LazyCollection; use Maatwebsite\Excel\Concerns\Exportable; use Maatwebsite\Excel\Concerns\FromCollection; class EloquentLazyCollectionExport implements FromCollection { use Exportable; public function collection(): LazyCollection ...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Data/Stubs/SheetWith100Rows.php
tests/Data/Stubs/SheetWith100Rows.php
<?php namespace Maatwebsite\Excel\Tests\Data\Stubs; use Illuminate\Support\Collection; use Maatwebsite\Excel\Concerns\Exportable; use Maatwebsite\Excel\Concerns\FromCollection; use Maatwebsite\Excel\Concerns\RegistersEventListeners; use Maatwebsite\Excel\Concerns\ShouldAutoSize; use Maatwebsite\Excel\Concerns\WithEve...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Data/Stubs/FromUsersQueryWithJoinExport.php
tests/Data/Stubs/FromUsersQueryWithJoinExport.php
<?php namespace Maatwebsite\Excel\Tests\Data\Stubs; use Illuminate\Database\Eloquent\Builder as EloquentBuilder; use Illuminate\Database\Eloquent\Relations\Relation; use Illuminate\Database\Query\Builder; use Maatwebsite\Excel\Concerns\Exportable; use Maatwebsite\Excel\Concerns\FromQuery; use Maatwebsite\Excel\Concer...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Data/Stubs/QueuedImportWithRetryUntil.php
tests/Data/Stubs/QueuedImportWithRetryUntil.php
<?php namespace Maatwebsite\Excel\Tests\Data\Stubs; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Database\Eloquent\Model; use Maatwebsite\Excel\Concerns\Importable; use Maatwebsite\Excel\Concerns\ToModel; use Maatwebsite\Excel\Concerns\WithChunkReading; use Maatwebsite\Excel\Tests\Data\Stubs\Database\Gr...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Data/Stubs/BeforeExportListener.php
tests/Data/Stubs/BeforeExportListener.php
<?php namespace Maatwebsite\Excel\Tests\Data\Stubs; class BeforeExportListener { /** * @var callable */ private $assertions; /** * @param callable $assertions */ public function __construct(callable $assertions) { $this->assertions = $assertions; } public fu...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Data/Stubs/FromViewExportWithMultipleSheets.php
tests/Data/Stubs/FromViewExportWithMultipleSheets.php
<?php namespace Maatwebsite\Excel\Tests\Data\Stubs; use Illuminate\Support\Collection; use Maatwebsite\Excel\Concerns\Exportable; use Maatwebsite\Excel\Concerns\WithMultipleSheets; class FromViewExportWithMultipleSheets implements WithMultipleSheets { use Exportable; /** * @var Collection */ p...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Data/Stubs/WithTitleExport.php
tests/Data/Stubs/WithTitleExport.php
<?php namespace Maatwebsite\Excel\Tests\Data\Stubs; use Maatwebsite\Excel\Concerns\Exportable; use Maatwebsite\Excel\Concerns\WithTitle; class WithTitleExport implements WithTitle { use Exportable; /** * @return string */ public function title(): string { return 'given-title'; ...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Data/Stubs/QueuedExportWithFailedHook.php
tests/Data/Stubs/QueuedExportWithFailedHook.php
<?php namespace Maatwebsite\Excel\Tests\Data\Stubs; use Exception; use Illuminate\Database\Eloquent\Collection; use Maatwebsite\Excel\Concerns\Exportable; use Maatwebsite\Excel\Concerns\FromCollection; use Maatwebsite\Excel\Concerns\WithMapping; use Maatwebsite\Excel\Tests\Data\Stubs\Database\User; use PHPUnit\Framew...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Data/Stubs/CustomSheetConcern.php
tests/Data/Stubs/CustomSheetConcern.php
<?php namespace Maatwebsite\Excel\Tests\Data\Stubs; interface CustomSheetConcern { public function custom(); }
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/Data/Stubs/AfterQueueExportJob.php
tests/Data/Stubs/AfterQueueExportJob.php
<?php namespace Maatwebsite\Excel\Tests\Data\Stubs; use Illuminate\Bus\Queueable; use Illuminate\Contracts\Queue\ShouldQueue; use Maatwebsite\Excel\Tests\TestCase; class AfterQueueExportJob implements ShouldQueue { use Queueable; /** * @var string */ private $filePath; /** * @param ...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false