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/src/Transactions/NullTransactionHandler.php | src/Transactions/NullTransactionHandler.php | <?php
namespace Maatwebsite\Excel\Transactions;
class NullTransactionHandler implements TransactionHandler
{
/**
* @param callable $callback
* @return mixed
*/
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/src/Transactions/TransactionManager.php | src/Transactions/TransactionManager.php | <?php
namespace Maatwebsite\Excel\Transactions;
use Illuminate\Support\Facades\DB;
use Illuminate\Support\Manager;
class TransactionManager extends Manager
{
/**
* @return string
*/
public function getDefaultDriver()
{
return config('excel.transactions.handler');
}
/**
* @... | php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Cache/BatchCacheDeprecated.php | src/Cache/BatchCacheDeprecated.php | <?php
namespace Maatwebsite\Excel\Cache;
use Illuminate\Support\Facades\Cache;
use Psr\SimpleCache\CacheInterface;
class BatchCacheDeprecated implements CacheInterface
{
/**
* @var CacheInterface
*/
protected $cache;
/**
* @var MemoryCacheDeprecated
*/
protected $memory;
/**... | php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Cache/MemoryCacheDeprecated.php | src/Cache/MemoryCacheDeprecated.php | <?php
namespace Maatwebsite\Excel\Cache;
use PhpOffice\PhpSpreadsheet\Cell\Cell;
use Psr\SimpleCache\CacheInterface;
class MemoryCacheDeprecated implements CacheInterface
{
/**
* @var int|null
*/
protected $memoryLimit;
/**
* @var array
*/
protected $cache = [];
/**
* @... | php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Cache/BatchCache.php | src/Cache/BatchCache.php | <?php
namespace Maatwebsite\Excel\Cache;
use Illuminate\Support\Facades\Cache;
use Psr\SimpleCache\CacheInterface;
class BatchCache implements CacheInterface
{
/**
* @var CacheInterface
*/
protected $cache;
/**
* @var MemoryCache
*/
protected $memory;
/**
* @var null|in... | php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Cache/MemoryCache.php | src/Cache/MemoryCache.php | <?php
namespace Maatwebsite\Excel\Cache;
use PhpOffice\PhpSpreadsheet\Cell\Cell;
use Psr\SimpleCache\CacheInterface;
class MemoryCache implements CacheInterface
{
/**
* @var int|null
*/
protected $memoryLimit;
/**
* @var array
*/
protected $cache = [];
/**
* @param int... | php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Cache/CacheManager.php | src/Cache/CacheManager.php | <?php
namespace Maatwebsite\Excel\Cache;
use Composer\InstalledVersions;
use Composer\Semver\VersionParser;
use Illuminate\Support\Facades\Cache;
use Illuminate\Support\Manager;
use Psr\SimpleCache\CacheInterface;
class CacheManager extends Manager
{
/**
* @const string
*/
public const DRIVER_BATCH... | php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Facades/Excel.php | src/Facades/Excel.php | <?php
namespace Maatwebsite\Excel\Facades;
use Illuminate\Foundation\Bus\PendingDispatch;
use Illuminate\Http\UploadedFile;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Facade;
use Maatwebsite\Excel\Excel as BaseExcel;
use Maatwebsite\Excel\Fakes\ExcelFake;
use Symfony\Component\HttpFoundation\Bi... | php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Console/ExportMakeCommand.php | src/Console/ExportMakeCommand.php | <?php
namespace Maatwebsite\Excel\Console;
use Illuminate\Console\GeneratorCommand;
use Symfony\Component\Console\Input\InputOption;
class ExportMakeCommand extends GeneratorCommand
{
use WithModelStub;
/**
* The console command name.
*
* @var string
*/
protected $name = 'make:export... | php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Console/ImportMakeCommand.php | src/Console/ImportMakeCommand.php | <?php
namespace Maatwebsite\Excel\Console;
use Illuminate\Console\GeneratorCommand;
use Symfony\Component\Console\Input\InputOption;
class ImportMakeCommand extends GeneratorCommand
{
use WithModelStub;
/**
* The console command name.
*
* @var string
*/
protected $name = 'make:import... | php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Console/WithModelStub.php | src/Console/WithModelStub.php | <?php
namespace Maatwebsite\Excel\Console;
use Illuminate\Support\Str;
use InvalidArgumentException;
trait WithModelStub
{
/**
* Build the model replacement values.
*
* @param array $replace
* @return array
*/
protected function buildModelReplacements(array $replace): array
{
... | php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Middleware/ConvertEmptyCellValuesToNull.php | src/Middleware/ConvertEmptyCellValuesToNull.php | <?php
namespace Maatwebsite\Excel\Middleware;
class ConvertEmptyCellValuesToNull extends CellMiddleware
{
/**
* @param mixed $value
* @return mixed
*/
public function __invoke($value, callable $next)
{
return $next(
$value === '' ? null : $value
);
}
}
| php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Middleware/CellMiddleware.php | src/Middleware/CellMiddleware.php | <?php
namespace Maatwebsite\Excel\Middleware;
abstract class CellMiddleware
{
/**
* @param mixed $value
* @return mixed
*/
abstract public function __invoke($value, callable $next);
}
| php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Middleware/TrimCellValue.php | src/Middleware/TrimCellValue.php | <?php
namespace Maatwebsite\Excel\Middleware;
class TrimCellValue extends CellMiddleware
{
/**
* @param mixed $value
* @return mixed
*/
public function __invoke($value, callable $next)
{
if (!is_string($value)) {
return $next($value);
}
// Remove white... | php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Concerns/WithChunkReading.php | src/Concerns/WithChunkReading.php | <?php
namespace Maatwebsite\Excel\Concerns;
interface WithChunkReading
{
/**
* @return int
*/
public function chunkSize(): int;
}
| php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Concerns/SkipsUnknownSheets.php | src/Concerns/SkipsUnknownSheets.php | <?php
namespace Maatwebsite\Excel\Concerns;
interface SkipsUnknownSheets
{
/**
* @param string|int $sheetName
*/
public function onUnknownSheet($sheetName);
}
| php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Concerns/WithBatchInserts.php | src/Concerns/WithBatchInserts.php | <?php
namespace Maatwebsite\Excel\Concerns;
interface WithBatchInserts
{
/**
* @return int
*/
public function batchSize(): int;
}
| php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Concerns/SkipsErrors.php | src/Concerns/SkipsErrors.php | <?php
namespace Maatwebsite\Excel\Concerns;
use Illuminate\Support\Collection;
use Throwable;
trait SkipsErrors
{
/**
* @var Throwable[]
*/
protected $errors = [];
/**
* @param Throwable $e
*/
public function onError(Throwable $e)
{
$this->errors[] = $e;
}
... | php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Concerns/ToCollection.php | src/Concerns/ToCollection.php | <?php
namespace Maatwebsite\Excel\Concerns;
use Illuminate\Support\Collection;
interface ToCollection
{
/**
* @param Collection $collection
*/
public function collection(Collection $collection);
}
| php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Concerns/MapsCsvSettings.php | src/Concerns/MapsCsvSettings.php | <?php
namespace Maatwebsite\Excel\Concerns;
use Illuminate\Support\Arr;
trait MapsCsvSettings
{
/**
* @var string
*/
protected static $delimiter = ',';
/**
* @var string
*/
protected static $enclosure = '"';
/**
* @var string
*/
protected static $lineEnding = P... | php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Concerns/WithCustomValueBinder.php | src/Concerns/WithCustomValueBinder.php | <?php
namespace Maatwebsite\Excel\Concerns;
use PhpOffice\PhpSpreadsheet\Cell\IValueBinder;
interface WithCustomValueBinder extends IValueBinder
{
}
| php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Concerns/FromIterator.php | src/Concerns/FromIterator.php | <?php
namespace Maatwebsite\Excel\Concerns;
use Iterator;
interface FromIterator
{
/**
* @return Iterator
*/
public function iterator(): Iterator;
}
| php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Concerns/WithCustomStartCell.php | src/Concerns/WithCustomStartCell.php | <?php
namespace Maatwebsite\Excel\Concerns;
interface WithCustomStartCell
{
/**
* @return string
*/
public function startCell(): string;
}
| php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Concerns/FromGenerator.php | src/Concerns/FromGenerator.php | <?php
namespace Maatwebsite\Excel\Concerns;
use Generator;
interface FromGenerator
{
/**
* @return Generator
*/
public function generator(): Generator;
}
| php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Concerns/WithGroupedHeadingRow.php | src/Concerns/WithGroupedHeadingRow.php | <?php
namespace Maatwebsite\Excel\Concerns;
interface WithGroupedHeadingRow extends WithHeadingRow
{
}
| php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Concerns/FromView.php | src/Concerns/FromView.php | <?php
namespace Maatwebsite\Excel\Concerns;
use Illuminate\Contracts\View\View;
interface FromView
{
/**
* @return View
*/
public function view(): View;
}
| php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Concerns/SkipsFailures.php | src/Concerns/SkipsFailures.php | <?php
namespace Maatwebsite\Excel\Concerns;
use Illuminate\Support\Collection;
use Maatwebsite\Excel\Validators\Failure;
trait SkipsFailures
{
/**
* @var Failure[]
*/
protected $failures = [];
/**
* @param Failure ...$failures
*/
public function onFailure(Failure ...$failures)
... | php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Concerns/WithHeadingRow.php | src/Concerns/WithHeadingRow.php | <?php
namespace Maatwebsite\Excel\Concerns;
interface WithHeadingRow
{
}
| php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Concerns/WithStrictNullComparison.php | src/Concerns/WithStrictNullComparison.php | <?php
namespace Maatwebsite\Excel\Concerns;
interface WithStrictNullComparison
{
}
| php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Concerns/WithMapping.php | src/Concerns/WithMapping.php | <?php
namespace Maatwebsite\Excel\Concerns;
/**
* @template RowType of mixed
*/
interface WithMapping
{
/**
* @param RowType $row
* @return array
*/
public function map($row): array;
}
| php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Concerns/WithReadFilter.php | src/Concerns/WithReadFilter.php | <?php
namespace Maatwebsite\Excel\Concerns;
use PhpOffice\PhpSpreadsheet\Reader\IReadFilter;
interface WithReadFilter
{
/**
* @return IReadFilter
*/
public function readFilter(): IReadFilter;
}
| php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Concerns/FromQuery.php | src/Concerns/FromQuery.php | <?php
namespace Maatwebsite\Excel\Concerns;
use Illuminate\Database\Eloquent\Builder as EloquentBuilder;
use Illuminate\Database\Eloquent\Relations\Relation;
use Illuminate\Database\Query\Builder;
use Laravel\Scout\Builder as ScoutBuilder;
interface FromQuery
{
/**
* @return Builder|EloquentBuilder|Relation... | php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Concerns/WithConditionalSheets.php | src/Concerns/WithConditionalSheets.php | <?php
namespace Maatwebsite\Excel\Concerns;
trait WithConditionalSheets
{
/**
* @var array
*/
protected $conditionallySelectedSheets = [];
/**
* @param string|array $sheets
* @return $this
*/
public function onlySheets($sheets)
{
$this->conditionallySelectedShee... | php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Concerns/SkipsOnFailure.php | src/Concerns/SkipsOnFailure.php | <?php
namespace Maatwebsite\Excel\Concerns;
use Maatwebsite\Excel\Validators\Failure;
interface SkipsOnFailure
{
/**
* @param Failure[] $failures
*/
public function onFailure(Failure ...$failures);
}
| php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Concerns/WithColumnWidths.php | src/Concerns/WithColumnWidths.php | <?php
namespace Maatwebsite\Excel\Concerns;
interface WithColumnWidths
{
public function columnWidths(): array;
}
| php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Concerns/WithEvents.php | src/Concerns/WithEvents.php | <?php
namespace Maatwebsite\Excel\Concerns;
interface WithEvents
{
/**
* @return array
*/
public function registerEvents(): array;
}
| php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Concerns/WithUpserts.php | src/Concerns/WithUpserts.php | <?php
namespace Maatwebsite\Excel\Concerns;
interface WithUpserts
{
/**
* @return string|array
*/
public function uniqueBy();
}
| php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Concerns/Exportable.php | src/Concerns/Exportable.php | <?php
namespace Maatwebsite\Excel\Concerns;
use Illuminate\Foundation\Bus\PendingDispatch;
use Maatwebsite\Excel\Exceptions\NoFilenameGivenException;
use Maatwebsite\Excel\Exceptions\NoFilePathGivenException;
use Maatwebsite\Excel\Exporter;
trait Exportable
{
/**
* @param string $fileName
* @param s... | php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Concerns/WithCustomQuerySize.php | src/Concerns/WithCustomQuerySize.php | <?php
namespace Maatwebsite\Excel\Concerns;
interface WithCustomQuerySize
{
/**
* Queued exportables are processed in chunks; each chunk being a job pushed to the queue by the QueuedWriter.
* In case of exportables that implement the FromQuery concern, the number of jobs is calculated by dividing the $q... | php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Concerns/RemembersChunkOffset.php | src/Concerns/RemembersChunkOffset.php | <?php
namespace Maatwebsite\Excel\Concerns;
trait RemembersChunkOffset
{
/**
* @var int|null
*/
protected $chunkOffset;
/**
* @param int $chunkOffset
*/
public function setChunkOffset(int $chunkOffset)
{
$this->chunkOffset = $chunkOffset;
}
/**
* @retur... | php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Concerns/WithStartRow.php | src/Concerns/WithStartRow.php | <?php
namespace Maatwebsite\Excel\Concerns;
interface WithStartRow
{
/**
* @return int
*/
public function startRow(): int;
}
| php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Concerns/WithCharts.php | src/Concerns/WithCharts.php | <?php
namespace Maatwebsite\Excel\Concerns;
use PhpOffice\PhpSpreadsheet\Chart\Chart;
interface WithCharts
{
/**
* @return Chart|Chart[]
*/
public function charts();
}
| php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Concerns/WithProgressBar.php | src/Concerns/WithProgressBar.php | <?php
namespace Maatwebsite\Excel\Concerns;
use Illuminate\Console\OutputStyle;
interface WithProgressBar
{
/**
* @return OutputStyle
*/
public function getConsoleOutput(): OutputStyle;
}
| php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Concerns/WithTitle.php | src/Concerns/WithTitle.php | <?php
namespace Maatwebsite\Excel\Concerns;
interface WithTitle
{
/**
* @return string
*/
public function title(): string;
}
| php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Concerns/ShouldAutoSize.php | src/Concerns/ShouldAutoSize.php | <?php
namespace Maatwebsite\Excel\Concerns;
interface ShouldAutoSize
{
}
| php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Concerns/WithCustomCsvSettings.php | src/Concerns/WithCustomCsvSettings.php | <?php
namespace Maatwebsite\Excel\Concerns;
interface WithCustomCsvSettings
{
/**
* @return array
*/
public function getCsvSettings(): array;
}
| php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Concerns/WithMultipleSheets.php | src/Concerns/WithMultipleSheets.php | <?php
namespace Maatwebsite\Excel\Concerns;
interface WithMultipleSheets
{
/**
* @return array
*/
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/src/Concerns/OnEachRow.php | src/Concerns/OnEachRow.php | <?php
namespace Maatwebsite\Excel\Concerns;
use Maatwebsite\Excel\Row;
interface OnEachRow
{
/**
* @param Row $row
*/
public function onRow(Row $row);
}
| php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Concerns/RemembersRowNumber.php | src/Concerns/RemembersRowNumber.php | <?php
namespace Maatwebsite\Excel\Concerns;
trait RemembersRowNumber
{
/**
* @var int
*/
protected $rowNumber;
/**
* @param int $rowNumber
*/
public function rememberRowNumber(int $rowNumber)
{
$this->rowNumber = $rowNumber;
}
/**
* @return int|null
... | php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Concerns/HasReferencesToOtherSheets.php | src/Concerns/HasReferencesToOtherSheets.php | <?php
namespace Maatwebsite\Excel\Concerns;
interface HasReferencesToOtherSheets
{
}
| php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Concerns/WithHeadings.php | src/Concerns/WithHeadings.php | <?php
namespace Maatwebsite\Excel\Concerns;
interface WithHeadings
{
/**
* @return array
*/
public function headings(): array;
}
| php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Concerns/WithDefaultStyles.php | src/Concerns/WithDefaultStyles.php | <?php
namespace Maatwebsite\Excel\Concerns;
use PhpOffice\PhpSpreadsheet\Style\Style;
interface WithDefaultStyles
{
/**
* @return array|void
*/
public function defaultStyles(Style $defaultStyle);
}
| php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Concerns/WithStyles.php | src/Concerns/WithStyles.php | <?php
namespace Maatwebsite\Excel\Concerns;
use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet;
interface WithStyles
{
public function styles(Worksheet $sheet);
}
| php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Concerns/WithValidation.php | src/Concerns/WithValidation.php | <?php
namespace Maatwebsite\Excel\Concerns;
interface WithValidation
{
/**
* @return array
*/
public function rules(): array;
}
| php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Concerns/WithUpsertColumns.php | src/Concerns/WithUpsertColumns.php | <?php
namespace Maatwebsite\Excel\Concerns;
interface WithUpsertColumns
{
/**
* @return array
*/
public function upsertColumns();
}
| php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Concerns/SkipsEmptyRows.php | src/Concerns/SkipsEmptyRows.php | <?php
namespace Maatwebsite\Excel\Concerns;
interface SkipsEmptyRows
{
}
| php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Concerns/WithMappedCells.php | src/Concerns/WithMappedCells.php | <?php
namespace Maatwebsite\Excel\Concerns;
interface WithMappedCells
{
/**
* @return array
*/
public function mapping(): array;
}
| php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Concerns/Importable.php | src/Concerns/Importable.php | <?php
namespace Maatwebsite\Excel\Concerns;
use Illuminate\Console\OutputStyle;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\PendingDispatch;
use Illuminate\Support\Collection;
use InvalidArgumentException;
use Maatwebsite\Excel\Exceptions\NoFilePathGivenException;
use Maatwebsite\Excel\I... | php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Concerns/WithCustomChunkSize.php | src/Concerns/WithCustomChunkSize.php | <?php
namespace Maatwebsite\Excel\Concerns;
interface WithCustomChunkSize
{
/**
* @return int
*/
public function chunkSize(): int;
}
| php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Concerns/ToArray.php | src/Concerns/ToArray.php | <?php
namespace Maatwebsite\Excel\Concerns;
interface ToArray
{
/**
* @param array $array
*/
public function array(array $array);
}
| php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Concerns/WithCalculatedFormulas.php | src/Concerns/WithCalculatedFormulas.php | <?php
namespace Maatwebsite\Excel\Concerns;
interface WithCalculatedFormulas
{
}
| php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Concerns/WithSkipDuplicates.php | src/Concerns/WithSkipDuplicates.php | <?php
namespace Maatwebsite\Excel\Concerns;
interface WithSkipDuplicates
{
}
| php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Concerns/SkipsOnError.php | src/Concerns/SkipsOnError.php | <?php
namespace Maatwebsite\Excel\Concerns;
use Throwable;
interface SkipsOnError
{
/**
* @param Throwable $e
*/
public function onError(Throwable $e);
}
| php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Concerns/RegistersEventListeners.php | src/Concerns/RegistersEventListeners.php | <?php
namespace Maatwebsite\Excel\Concerns;
use Maatwebsite\Excel\Events\AfterBatch;
use Maatwebsite\Excel\Events\AfterChunk;
use Maatwebsite\Excel\Events\AfterImport;
use Maatwebsite\Excel\Events\AfterSheet;
use Maatwebsite\Excel\Events\BeforeExport;
use Maatwebsite\Excel\Events\BeforeImport;
use Maatwebsite\Excel\E... | php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Concerns/ToModel.php | src/Concerns/ToModel.php | <?php
namespace Maatwebsite\Excel\Concerns;
use Illuminate\Database\Eloquent\Model;
interface ToModel
{
/**
* @param array $row
* @return Model|Model[]|null
*/
public function model(array $row);
}
| php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Concerns/WithDrawings.php | src/Concerns/WithDrawings.php | <?php
namespace Maatwebsite\Excel\Concerns;
use PhpOffice\PhpSpreadsheet\Worksheet\BaseDrawing;
interface WithDrawings
{
/**
* @return BaseDrawing|BaseDrawing[]
*/
public function drawings();
}
| php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Concerns/PersistRelations.php | src/Concerns/PersistRelations.php | <?php
namespace Maatwebsite\Excel\Concerns;
interface PersistRelations
{
}
| php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Concerns/WithFormatData.php | src/Concerns/WithFormatData.php | <?php
namespace Maatwebsite\Excel\Concerns;
interface WithFormatData
{
}
| php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Concerns/WithColumnFormatting.php | src/Concerns/WithColumnFormatting.php | <?php
namespace Maatwebsite\Excel\Concerns;
interface WithColumnFormatting
{
/**
* @return array
*/
public function columnFormats(): array;
}
| php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Concerns/WithBackgroundColor.php | src/Concerns/WithBackgroundColor.php | <?php
namespace Maatwebsite\Excel\Concerns;
use PhpOffice\PhpSpreadsheet\Style\Color;
interface WithBackgroundColor
{
/**
* @return string|array|Color
*/
public function backgroundColor();
}
| php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Concerns/FromCollection.php | src/Concerns/FromCollection.php | <?php
namespace Maatwebsite\Excel\Concerns;
use Illuminate\Support\Collection;
interface FromCollection
{
/**
* @return Collection
*/
public function collection();
}
| php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Concerns/WithLimit.php | src/Concerns/WithLimit.php | <?php
namespace Maatwebsite\Excel\Concerns;
interface WithLimit
{
/**
* @return int
*/
public function limit(): int;
}
| php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Concerns/WithPreCalculateFormulas.php | src/Concerns/WithPreCalculateFormulas.php | <?php
namespace Maatwebsite\Excel\Concerns;
interface WithPreCalculateFormulas
{
}
| php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Concerns/ShouldQueueWithoutChain.php | src/Concerns/ShouldQueueWithoutChain.php | <?php
namespace Maatwebsite\Excel\Concerns;
use Illuminate\Contracts\Queue\ShouldQueue;
interface ShouldQueueWithoutChain extends ShouldQueue
{
}
| php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Concerns/WithProperties.php | src/Concerns/WithProperties.php | <?php
namespace Maatwebsite\Excel\Concerns;
interface WithProperties
{
public function properties(): array;
}
| php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Concerns/FromArray.php | src/Concerns/FromArray.php | <?php
namespace Maatwebsite\Excel\Concerns;
interface FromArray
{
/**
* @return array
*/
public function array(): array;
}
| php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Concerns/WithColumnLimit.php | src/Concerns/WithColumnLimit.php | <?php
namespace Maatwebsite\Excel\Concerns;
interface WithColumnLimit
{
public function endColumn(): string;
}
| php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Validators/RowValidator.php | src/Validators/RowValidator.php | <?php
namespace Maatwebsite\Excel\Validators;
use Illuminate\Contracts\Validation\Factory;
use Illuminate\Support\Str;
use Illuminate\Validation\ValidationException as IlluminateValidationException;
use Maatwebsite\Excel\Concerns\SkipsOnFailure;
use Maatwebsite\Excel\Concerns\WithValidation;
use Maatwebsite\Excel\Exc... | php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Validators/Failure.php | src/Validators/Failure.php | <?php
namespace Maatwebsite\Excel\Validators;
use Illuminate\Contracts\Support\Arrayable;
use JsonSerializable;
class Failure implements Arrayable, JsonSerializable
{
/**
* @var int
*/
protected $row;
/**
* @var string
*/
protected $attribute;
/**
* @var array
*/
... | php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Validators/ValidationException.php | src/Validators/ValidationException.php | <?php
namespace Maatwebsite\Excel\Validators;
use Illuminate\Validation\ValidationException as IlluminateValidationException;
class ValidationException extends IlluminateValidationException
{
/**
* @var Failure[]
*/
protected $failures;
/**
* @param IlluminateValidationException $previo... | php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Factories/ReaderFactory.php | src/Factories/ReaderFactory.php | <?php
namespace Maatwebsite\Excel\Factories;
use Maatwebsite\Excel\Concerns\MapsCsvSettings;
use Maatwebsite\Excel\Concerns\WithCustomCsvSettings;
use Maatwebsite\Excel\Concerns\WithLimit;
use Maatwebsite\Excel\Concerns\WithReadFilter;
use Maatwebsite\Excel\Concerns\WithStartRow;
use Maatwebsite\Excel\Exceptions\NoTy... | php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Factories/WriterFactory.php | src/Factories/WriterFactory.php | <?php
namespace Maatwebsite\Excel\Factories;
use Maatwebsite\Excel\Cache\CacheManager;
use Maatwebsite\Excel\Concerns\MapsCsvSettings;
use Maatwebsite\Excel\Concerns\WithCharts;
use Maatwebsite\Excel\Concerns\WithCustomCsvSettings;
use Maatwebsite\Excel\Concerns\WithMultipleSheets;
use Maatwebsite\Excel\Concerns\With... | php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Filters/LimitFilter.php | src/Filters/LimitFilter.php | <?php
namespace Maatwebsite\Excel\Filters;
use PhpOffice\PhpSpreadsheet\Reader\IReadFilter;
class LimitFilter implements IReadFilter
{
/**
* @var int
*/
private $startRow;
/**
* @var int
*/
private $endRow;
/**
* @param int $startRow
* @param int $limit
*/... | php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Filters/ChunkReadFilter.php | src/Filters/ChunkReadFilter.php | <?php
namespace Maatwebsite\Excel\Filters;
use PhpOffice\PhpSpreadsheet\Reader\IReadFilter;
class ChunkReadFilter implements IReadFilter
{
/**
* @var int
*/
private $headingRow;
/**
* @var int
*/
private $startRow;
/**
* @var int
*/
private $endRow;
/**
... | php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Events/AfterChunk.php | src/Events/AfterChunk.php | <?php
namespace Maatwebsite\Excel\Events;
use Maatwebsite\Excel\Sheet;
class AfterChunk extends Event
{
/**
* @var Sheet
*/
private $sheet;
/**
* @var int
*/
private $startRow;
public function __construct(Sheet $sheet, $importable, int $startRow)
{
$this->sheet ... | php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Events/BeforeSheet.php | src/Events/BeforeSheet.php | <?php
namespace Maatwebsite\Excel\Events;
use Maatwebsite\Excel\Sheet;
class BeforeSheet extends Event
{
/**
* @var Sheet
*/
public $sheet;
/**
* @param Sheet $sheet
* @param object $exportable
*/
public function __construct(Sheet $sheet, $exportable)
{
$this... | php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Events/AfterImport.php | src/Events/AfterImport.php | <?php
namespace Maatwebsite\Excel\Events;
use Maatwebsite\Excel\Reader;
class AfterImport extends Event
{
/**
* @var Reader
*/
public $reader;
/**
* @param Reader $reader
* @param object $importable
*/
public function __construct(Reader $reader, $importable)
{
... | php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Events/BeforeWriting.php | src/Events/BeforeWriting.php | <?php
namespace Maatwebsite\Excel\Events;
use Maatwebsite\Excel\Writer;
class BeforeWriting extends Event
{
/**
* @var Writer
*/
public $writer;
/**
* @var object
*/
private $exportable;
/**
* @param Writer $writer
* @param object $exportable
*/
public... | php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Events/Event.php | src/Events/Event.php | <?php
namespace Maatwebsite\Excel\Events;
/**
* @internal
*/
abstract class Event
{
/**
* @var object
*/
protected $concernable;
/**
* @param object $concernable
*/
public function __construct($concernable)
{
$this->concernable = $concernable;
}
/**
*... | php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Events/AfterBatch.php | src/Events/AfterBatch.php | <?php
namespace Maatwebsite\Excel\Events;
use Maatwebsite\Excel\Imports\ModelManager;
class AfterBatch extends Event
{
/**
* @var ModelManager
*/
public $manager;
/**
* @var int
*/
private $batchSize;
/**
* @var int
*/
private $startRow;
/**
* @param ... | php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Events/BeforeExport.php | src/Events/BeforeExport.php | <?php
namespace Maatwebsite\Excel\Events;
use Maatwebsite\Excel\Writer;
class BeforeExport extends Event
{
/**
* @var Writer
*/
public $writer;
/**
* @param Writer $writer
* @param object $exportable
*/
public function __construct(Writer $writer, $exportable)
{
... | php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Events/ImportFailed.php | src/Events/ImportFailed.php | <?php
namespace Maatwebsite\Excel\Events;
use Throwable;
class ImportFailed
{
/**
* @var Throwable
*/
public $e;
/**
* @param Throwable $e
*/
public function __construct(Throwable $e)
{
$this->e = $e;
}
/**
* @return Throwable
*/
public functi... | php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Events/BeforeImport.php | src/Events/BeforeImport.php | <?php
namespace Maatwebsite\Excel\Events;
use Maatwebsite\Excel\Reader;
class BeforeImport extends Event
{
/**
* @var Reader
*/
public $reader;
/**
* @param Reader $reader
* @param object $importable
*/
public function __construct(Reader $reader, $importable)
{
... | php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Events/AfterSheet.php | src/Events/AfterSheet.php | <?php
namespace Maatwebsite\Excel\Events;
use Maatwebsite\Excel\Sheet;
class AfterSheet extends Event
{
/**
* @var Sheet
*/
public $sheet;
/**
* @param Sheet $sheet
* @param object $exportable
*/
public function __construct(Sheet $sheet, $exportable)
{
$this-... | php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/ExcelFakeTest.php | tests/ExcelFakeTest.php | <?php
namespace Maatwebsite\Excel\Tests;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Foundation\Bus\PendingDispatch;
use Illuminate\Support\Collection;
use Maatwebsite\Excel\Concerns\FromCollection;
use Maatwebsite\Excel\Concerns\ToModel;
use Maatwebsite\Excel\Fa... | php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/HeadingRowImportTest.php | tests/HeadingRowImportTest.php | <?php
namespace Maatwebsite\Excel\Tests;
use Maatwebsite\Excel\HeadingRowImport;
use Maatwebsite\Excel\Imports\HeadingRowFormatter;
class HeadingRowImportTest extends TestCase
{
protected function tearDown(): void
{
HeadingRowFormatter::reset();
parent::tearDown();
}
public function ... | php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/TestCase.php | tests/TestCase.php | <?php
namespace Maatwebsite\Excel\Tests;
use Illuminate\Contracts\Queue\Job;
use Illuminate\Http\Testing\File;
use Maatwebsite\Excel\ExcelServiceProvider;
use Orchestra\Testbench\TestCase as OrchestraTestCase;
use PhpOffice\PhpSpreadsheet\IOFactory;
use PHPUnit\Framework\Constraint\StringContains;
class TestCase ext... | php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/DelegatedMacroableTest.php | tests/DelegatedMacroableTest.php | <?php
namespace Maatwebsite\Excel\Tests;
use Maatwebsite\Excel\Concerns\Exportable;
use Maatwebsite\Excel\Concerns\RegistersEventListeners;
use Maatwebsite\Excel\Concerns\WithEvents;
use Maatwebsite\Excel\Events\BeforeExport;
use Maatwebsite\Excel\Events\BeforeSheet;
use Maatwebsite\Excel\Sheet;
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/QueuedViewExportTest.php | tests/QueuedViewExportTest.php | <?php
namespace Maatwebsite\Excel\Tests;
use Illuminate\Support\Collection;
use Maatwebsite\Excel\Tests\Data\Stubs\AfterQueueExportJob;
use Maatwebsite\Excel\Tests\Data\Stubs\Database\User;
use Maatwebsite\Excel\Tests\Data\Stubs\FromViewExportWithMultipleSheets;
use Maatwebsite\Excel\Tests\Data\Stubs\SheetForUsersFro... | php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
SpartnerNL/Laravel-Excel | https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/tests/CellTest.php | tests/CellTest.php | <?php
namespace Maatwebsite\Excel\Tests;
use Maatwebsite\Excel\Cell;
use Maatwebsite\Excel\Middleware\ConvertEmptyCellValuesToNull;
use Maatwebsite\Excel\Middleware\TrimCellValue;
class CellTest extends TestCase
{
public function test_can_get_cell_value()
{
config()->set('excel.imports.cells.middlewa... | php | MIT | b31b6f4eabd8b5ff3f873e808abd183d3f5cb244 | 2026-01-04T15:03:06.866936Z | false |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.