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
filp/whoops
https://github.com/filp/whoops/blob/67342bc807854844244f219fb74687fdf2f62e00/src/Whoops/Exception/Formatter.php
src/Whoops/Exception/Formatter.php
<?php /** * Whoops - php errors for cool kids * @author Filipe Dobreira <http://github.com/filp> */ namespace Whoops\Exception; use Whoops\Inspector\InspectorInterface; class Formatter { /** * Returns all basic information about the exception in a simple array * for further convertion to other langu...
php
MIT
67342bc807854844244f219fb74687fdf2f62e00
2026-01-04T15:02:56.580125Z
false
filp/whoops
https://github.com/filp/whoops/blob/67342bc807854844244f219fb74687fdf2f62e00/src/Whoops/Exception/Inspector.php
src/Whoops/Exception/Inspector.php
<?php /** * Whoops - php errors for cool kids * @author Filipe Dobreira <http://github.com/filp> */ namespace Whoops\Exception; use Whoops\Inspector\InspectorFactory; use Whoops\Inspector\InspectorInterface; use Whoops\Util\Misc; class Inspector implements InspectorInterface { /** * @var \Throwable ...
php
MIT
67342bc807854844244f219fb74687fdf2f62e00
2026-01-04T15:02:56.580125Z
false
filp/whoops
https://github.com/filp/whoops/blob/67342bc807854844244f219fb74687fdf2f62e00/src/Whoops/Exception/ErrorException.php
src/Whoops/Exception/ErrorException.php
<?php /** * Whoops - php errors for cool kids * @author Filipe Dobreira <http://github.com/filp> */ namespace Whoops\Exception; use ErrorException as BaseErrorException; /** * Wraps ErrorException; mostly used for typing (at least now) * to easily cleanup the stack trace of redundant info. */ class ErrorExcept...
php
MIT
67342bc807854844244f219fb74687fdf2f62e00
2026-01-04T15:02:56.580125Z
false
filp/whoops
https://github.com/filp/whoops/blob/67342bc807854844244f219fb74687fdf2f62e00/src/Whoops/Resources/views/frame_code.html.php
src/Whoops/Resources/views/frame_code.html.php
<?php /* Display a code block for all frames in the stack. * @todo: This should PROBABLY be done on-demand, lest * we get 200 frames to process. */ ?> <div class="frame-code-container <?php echo (!$has_frames ? 'empty' : '') ?>"> <?php foreach ($frames as $i => $frame): ?> <?php $line = $frame->getL...
php
MIT
67342bc807854844244f219fb74687fdf2f62e00
2026-01-04T15:02:56.580125Z
false
filp/whoops
https://github.com/filp/whoops/blob/67342bc807854844244f219fb74687fdf2f62e00/src/Whoops/Resources/views/header.html.php
src/Whoops/Resources/views/header.html.php
<div class="exception"> <div class="exc-title"> <?php foreach ($name as $i => $nameSection): ?> <?php if ($i == count($name) - 1): ?> <span class="exc-title-primary"><?php echo $tpl->escape($nameSection) ?></span> <?php else: ?> <?php echo $tpl->escape($nameSection) . ' \\' ?> <?...
php
MIT
67342bc807854844244f219fb74687fdf2f62e00
2026-01-04T15:02:56.580125Z
false
filp/whoops
https://github.com/filp/whoops/blob/67342bc807854844244f219fb74687fdf2f62e00/src/Whoops/Resources/views/layout.html.php
src/Whoops/Resources/views/layout.html.php
<?php /** * Layout template file for Whoops's pretty error output. */ ?> <!DOCTYPE html><?php echo $preface; ?> <html> <head> <meta charset="utf-8"> <meta name="robots" content="noindex,nofollow"/> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"/> <title><?php ech...
php
MIT
67342bc807854844244f219fb74687fdf2f62e00
2026-01-04T15:02:56.580125Z
false
filp/whoops
https://github.com/filp/whoops/blob/67342bc807854844244f219fb74687fdf2f62e00/src/Whoops/Resources/views/frames_container.html.php
src/Whoops/Resources/views/frames_container.html.php
<div class="frames-container <?php echo $active_frames_tab == 'application' ? 'frames-container-application' : '' ?>"> <?php $tpl->render($frame_list) ?> </div>
php
MIT
67342bc807854844244f219fb74687fdf2f62e00
2026-01-04T15:02:56.580125Z
false
filp/whoops
https://github.com/filp/whoops/blob/67342bc807854844244f219fb74687fdf2f62e00/src/Whoops/Resources/views/frames_description.html.php
src/Whoops/Resources/views/frames_description.html.php
<div class="frames-description <?php echo $has_frames_tabs ? 'frames-description-application' : '' ?>"> <?php if ($has_frames_tabs): ?> <a href="#" id="application-frames-tab" class="frames-tab <?php echo $active_frames_tab == 'application' ? 'frames-tab-active' : '' ?>"> Application frames (<?php echo $f...
php
MIT
67342bc807854844244f219fb74687fdf2f62e00
2026-01-04T15:02:56.580125Z
false
filp/whoops
https://github.com/filp/whoops/blob/67342bc807854844244f219fb74687fdf2f62e00/src/Whoops/Resources/views/env_details.html.php
src/Whoops/Resources/views/env_details.html.php
<?php /* List data-table values, i.e: $_SERVER, $_GET, .... */ ?> <div class="details"> <h2 class="details-heading">Environment &amp; details:</h2> <div class="data-table-container" id="data-tables"> <?php foreach ($tables as $label => $data): ?> <div class="data-table" id="sg-<?php echo $tpl->escape($tp...
php
MIT
67342bc807854844244f219fb74687fdf2f62e00
2026-01-04T15:02:56.580125Z
false
filp/whoops
https://github.com/filp/whoops/blob/67342bc807854844244f219fb74687fdf2f62e00/src/Whoops/Resources/views/panel_details_outer.html.php
src/Whoops/Resources/views/panel_details_outer.html.php
<div class="panel details-container cf"> <?php $tpl->render($panel_details) ?> </div>
php
MIT
67342bc807854844244f219fb74687fdf2f62e00
2026-01-04T15:02:56.580125Z
false
filp/whoops
https://github.com/filp/whoops/blob/67342bc807854844244f219fb74687fdf2f62e00/src/Whoops/Resources/views/panel_details.html.php
src/Whoops/Resources/views/panel_details.html.php
<?php $tpl->render($frame_code) ?> <?php $tpl->render($env_details) ?>
php
MIT
67342bc807854844244f219fb74687fdf2f62e00
2026-01-04T15:02:56.580125Z
false
filp/whoops
https://github.com/filp/whoops/blob/67342bc807854844244f219fb74687fdf2f62e00/src/Whoops/Resources/views/header_outer.html.php
src/Whoops/Resources/views/header_outer.html.php
<header> <?php $tpl->render($header) ?> </header>
php
MIT
67342bc807854844244f219fb74687fdf2f62e00
2026-01-04T15:02:56.580125Z
false
filp/whoops
https://github.com/filp/whoops/blob/67342bc807854844244f219fb74687fdf2f62e00/src/Whoops/Resources/views/frame_list.html.php
src/Whoops/Resources/views/frame_list.html.php
<?php /* List file names & line numbers for all stack frames; clicking these links/buttons will display the code view for that particular frame */ ?> <?php foreach ($frames as $i => $frame): ?> <div class="frame <?php echo ($i == 0 ? 'active' : '') ?> <?php echo ($frame->isApplication() ? 'frame-app...
php
MIT
67342bc807854844244f219fb74687fdf2f62e00
2026-01-04T15:02:56.580125Z
false
filp/whoops
https://github.com/filp/whoops/blob/67342bc807854844244f219fb74687fdf2f62e00/src/Whoops/Resources/views/panel_left_outer.html.php
src/Whoops/Resources/views/panel_left_outer.html.php
<div class="panel left-panel cf <?php echo (!$has_frames ? 'empty' : '') ?>"> <?php $tpl->render($panel_left) ?> </div>
php
MIT
67342bc807854844244f219fb74687fdf2f62e00
2026-01-04T15:02:56.580125Z
false
filp/whoops
https://github.com/filp/whoops/blob/67342bc807854844244f219fb74687fdf2f62e00/src/Whoops/Resources/views/panel_left.html.php
src/Whoops/Resources/views/panel_left.html.php
<?php $tpl->render($header_outer); $tpl->render($frames_description); $tpl->render($frames_container);
php
MIT
67342bc807854844244f219fb74687fdf2f62e00
2026-01-04T15:02:56.580125Z
false
filp/whoops
https://github.com/filp/whoops/blob/67342bc807854844244f219fb74687fdf2f62e00/tests/bootstrap.php
tests/bootstrap.php
<?php /** * Whoops - php errors for cool kids * @author Filipe Dobreira <http://github.com/filp> * * Bootstrapper for PHPUnit tests. */ error_reporting(E_ALL); require_once __DIR__ . '/../vendor/autoload.php';
php
MIT
67342bc807854844244f219fb74687fdf2f62e00
2026-01-04T15:02:56.580125Z
false
filp/whoops
https://github.com/filp/whoops/blob/67342bc807854844244f219fb74687fdf2f62e00/tests/fixtures/template.php
tests/fixtures/template.php
<?php echo $tpl->slug("hello world!"); ?> My name is <?php echo $tpl->escape($name) ?>
php
MIT
67342bc807854844244f219fb74687fdf2f62e00
2026-01-04T15:02:56.580125Z
false
filp/whoops
https://github.com/filp/whoops/blob/67342bc807854844244f219fb74687fdf2f62e00/tests/fixtures/frame.lines-test.php
tests/fixtures/frame.lines-test.php
<?php // Line 2 // Line 3 // Line 4 // Line 5 // Line 6 // Line 7 // Line 8 // Line 9 // Line 10
php
MIT
67342bc807854844244f219fb74687fdf2f62e00
2026-01-04T15:02:56.580125Z
false
filp/whoops
https://github.com/filp/whoops/blob/67342bc807854844244f219fb74687fdf2f62e00/tests/Whoops/TestCase.php
tests/Whoops/TestCase.php
<?php /** * Whoops - php errors for cool kids * @author Filipe Dobreira <http://github.com/filp> */ namespace Whoops; use PHPUnit\Framework\TestCase as BaseTestCase; class TestCase extends BaseTestCase { /** * @return Run */ protected function getRunInstance() { $run = new Run(); ...
php
MIT
67342bc807854844244f219fb74687fdf2f62e00
2026-01-04T15:02:56.580125Z
false
filp/whoops
https://github.com/filp/whoops/blob/67342bc807854844244f219fb74687fdf2f62e00/tests/Whoops/RunTest.php
tests/Whoops/RunTest.php
<?php /** * Whoops - php errors for cool kids * @author Filipe Dobreira <http://github.com/filp> */ namespace Whoops; use ArrayObject; use Exception; use InvalidArgumentException; use Mockery as m; use RuntimeException; use Whoops\Handler\Handler; use Whoops\Handler\HandlerInterface; use Whoops\Handler\PrettyPageH...
php
MIT
67342bc807854844244f219fb74687fdf2f62e00
2026-01-04T15:02:56.580125Z
false
filp/whoops
https://github.com/filp/whoops/blob/67342bc807854844244f219fb74687fdf2f62e00/tests/Whoops/Handler/JsonResponseHandlerTest.php
tests/Whoops/Handler/JsonResponseHandlerTest.php
<?php /** * Whoops - php errors for cool kids * @author Filipe Dobreira <http://github.com/filp> */ namespace Whoops\Handler; use RuntimeException; use Whoops\TestCase; class JsonResponseHandlerTest extends TestCase { /** * @return \Whoops\Handler\JsonResponseHandler */ private function getHandl...
php
MIT
67342bc807854844244f219fb74687fdf2f62e00
2026-01-04T15:02:56.580125Z
false
filp/whoops
https://github.com/filp/whoops/blob/67342bc807854844244f219fb74687fdf2f62e00/tests/Whoops/Handler/PlainTextHandlerTest.php
tests/Whoops/Handler/PlainTextHandlerTest.php
<?php /** * Whoops - php errors for cool kids * @author Filipe Dobreira <http://github.com/filp> */ namespace Whoops\Handler; use RuntimeException; use StdClass; use Whoops\TestCase; use Whoops\Exception\Frame; class PlainTextHandlerTest extends TestCase { const DEFAULT_EXCEPTION_LINE = 34; const DEFAULT_...
php
MIT
67342bc807854844244f219fb74687fdf2f62e00
2026-01-04T15:02:56.580125Z
false
filp/whoops
https://github.com/filp/whoops/blob/67342bc807854844244f219fb74687fdf2f62e00/tests/Whoops/Handler/CallbackHandlerTest.php
tests/Whoops/Handler/CallbackHandlerTest.php
<?php namespace Whoops\Handler; use Whoops\TestCase; class CallbackHandlerTest extends TestCase { public function testSimplifiedBacktrace() { $handler = new CallbackHandler(function ($exception, $inspector, $run) { return debug_backtrace(); }); $backtrace = $handler->handl...
php
MIT
67342bc807854844244f219fb74687fdf2f62e00
2026-01-04T15:02:56.580125Z
false
filp/whoops
https://github.com/filp/whoops/blob/67342bc807854844244f219fb74687fdf2f62e00/tests/Whoops/Handler/PrettyPageHandlerTest.php
tests/Whoops/Handler/PrettyPageHandlerTest.php
<?php /** * Whoops - php errors for cool kids * @author Filipe Dobreira <http://github.com/filp> */ namespace Whoops\Handler; use InvalidArgumentException; use RuntimeException; use Whoops\TestCase; class PrettyPageHandlerTest extends TestCase { /** * @return \Whoops\Handler\PrettyPageHandler */ ...
php
MIT
67342bc807854844244f219fb74687fdf2f62e00
2026-01-04T15:02:56.580125Z
false
filp/whoops
https://github.com/filp/whoops/blob/67342bc807854844244f219fb74687fdf2f62e00/tests/Whoops/Handler/XmlResponseHandlerTest.php
tests/Whoops/Handler/XmlResponseHandlerTest.php
<?php /** * Whoops - php errors for cool kids */ namespace Whoops\Handler; use RuntimeException; use Whoops\TestCase; class XmlResponseHandlerTest extends TestCase { public function testSimpleValid() { $handler = new XmlResponseHandler(); $run = $this->getRunInstance(); $run->pushH...
php
MIT
67342bc807854844244f219fb74687fdf2f62e00
2026-01-04T15:02:56.580125Z
false
filp/whoops
https://github.com/filp/whoops/blob/67342bc807854844244f219fb74687fdf2f62e00/tests/Whoops/Util/MiscTest.php
tests/Whoops/Util/MiscTest.php
<?php /** * Whoops - php errors for cool kids * @author Filipe Dobreira <http://github.com/filp> */ namespace Whoops\Util; use Whoops\TestCase; class MiscTest extends TestCase { /** * @dataProvider provideTranslateException * @param string $expected_output * @param int $exception_code *...
php
MIT
67342bc807854844244f219fb74687fdf2f62e00
2026-01-04T15:02:56.580125Z
false
filp/whoops
https://github.com/filp/whoops/blob/67342bc807854844244f219fb74687fdf2f62e00/tests/Whoops/Util/SystemFacadeTest.php
tests/Whoops/Util/SystemFacadeTest.php
<?php namespace Whoops\Util; use PHPUnit\Framework\TestCase; class SystemFacadeTest extends TestCase { /** * @var \Mockery\Mock */ public static $runtime; /** * @var SystemFacade */ private $facade; public static function delegate($fn, array $args = []) { return s...
php
MIT
67342bc807854844244f219fb74687fdf2f62e00
2026-01-04T15:02:56.580125Z
false
filp/whoops
https://github.com/filp/whoops/blob/67342bc807854844244f219fb74687fdf2f62e00/tests/Whoops/Util/TemplateHelperTest.php
tests/Whoops/Util/TemplateHelperTest.php
<?php /** * Whoops - php errors for cool kids * @author Filipe Dobreira <http://github.com/filp> */ namespace Whoops\Util; use Whoops\TestCase; class TemplateHelperTest extends TestCase { /** * @var TemplateHelper */ private $helper; /** * @before */ public function getReady()...
php
MIT
67342bc807854844244f219fb74687fdf2f62e00
2026-01-04T15:02:56.580125Z
false
filp/whoops
https://github.com/filp/whoops/blob/67342bc807854844244f219fb74687fdf2f62e00/tests/Whoops/Util/HtmlDumperOutputTest.php
tests/Whoops/Util/HtmlDumperOutputTest.php
<?php /** * Whoops - php errors for cool kids * @author Filipe Dobreira <http://github.com/filp> */ namespace Whoops\Util; use Whoops\TestCase; class HtmlDumperOutputTest extends TestCase { /** * @covers Whoops\Util::__invoke * @covers Whoops\Util::getOutput */ public function testOutput() ...
php
MIT
67342bc807854844244f219fb74687fdf2f62e00
2026-01-04T15:02:56.580125Z
false
filp/whoops
https://github.com/filp/whoops/blob/67342bc807854844244f219fb74687fdf2f62e00/tests/Whoops/Exception/FrameCollectionTest.php
tests/Whoops/Exception/FrameCollectionTest.php
<?php /** * Whoops - php errors for cool kids * @author Filipe Dobreira <http://github.com/filp> */ namespace Whoops\Exception; use Whoops\TestCase; class FrameCollectionTest extends TestCase { /** * Stupid little counter for tagging frames * with a unique but predictable id * @var int */ ...
php
MIT
67342bc807854844244f219fb74687fdf2f62e00
2026-01-04T15:02:56.580125Z
false
filp/whoops
https://github.com/filp/whoops/blob/67342bc807854844244f219fb74687fdf2f62e00/tests/Whoops/Exception/FrameTest.php
tests/Whoops/Exception/FrameTest.php
<?php /** * Whoops - php errors for cool kids * @author Filipe Dobreira <http://github.com/filp> */ namespace Whoops\Exception; use Whoops\TestCase; class FrameTest extends TestCase { /** * @return array */ private function getFrameData() { return [ 'file' => __DIR__ ...
php
MIT
67342bc807854844244f219fb74687fdf2f62e00
2026-01-04T15:02:56.580125Z
false
filp/whoops
https://github.com/filp/whoops/blob/67342bc807854844244f219fb74687fdf2f62e00/tests/Whoops/Exception/FormatterTest.php
tests/Whoops/Exception/FormatterTest.php
<?php /** * Whoops - php errors for cool kids * @author Filipe Dobreira <http://github.com/filp> */ namespace Whoops\Exception; use Whoops\TestCase; class FormatterTest extends TestCase { public function testPlain() { $msg = 'Sample exception message foo'; $output = Formatter::formatExcept...
php
MIT
67342bc807854844244f219fb74687fdf2f62e00
2026-01-04T15:02:56.580125Z
false
filp/whoops
https://github.com/filp/whoops/blob/67342bc807854844244f219fb74687fdf2f62e00/tests/Whoops/Exception/InspectorTest.php
tests/Whoops/Exception/InspectorTest.php
<?php /** * Whoops - php errors for cool kids * @author Filipe Dobreira <http://github.com/filp> */ namespace Whoops\Exception; use Exception; use Whoops\TestCase; class InspectorTest extends TestCase { /** * @param string $message * @param int $code * @param Exception $previous ...
php
MIT
67342bc807854844244f219fb74687fdf2f62e00
2026-01-04T15:02:56.580125Z
false
filp/whoops
https://github.com/filp/whoops/blob/67342bc807854844244f219fb74687fdf2f62e00/examples/example.php
examples/example.php
<?php /** * Whoops - php errors for cool kids * @author Filipe Dobreira <http://github.com/filp> * * Run this example file with the PHP 5.4 web server with: * * $ cd project_dir * $ php -S localhost:8080 * * and access localhost:8080/examples/example.php through your browser * * Or just run it through apache...
php
MIT
67342bc807854844244f219fb74687fdf2f62e00
2026-01-04T15:02:56.580125Z
false
filp/whoops
https://github.com/filp/whoops/blob/67342bc807854844244f219fb74687fdf2f62e00/examples/lib.php
examples/lib.php
<?php function whoops_add_stack_frame($callback){ $callback(); }
php
MIT
67342bc807854844244f219fb74687fdf2f62e00
2026-01-04T15:02:56.580125Z
false
filp/whoops
https://github.com/filp/whoops/blob/67342bc807854844244f219fb74687fdf2f62e00/examples/example-ajax-only.php
examples/example-ajax-only.php
<?php /** * Whoops - php errors for cool kids * @author Filipe Dobreira <http://github.com/filp> * * Run this example file with the PHP 5.4 web server with: * * $ cd project_dir * $ php -S localhost:8080 * * and access localhost:8080/examples/example-ajax-only.php through your browser * * Or just run it thro...
php
MIT
67342bc807854844244f219fb74687fdf2f62e00
2026-01-04T15:02:56.580125Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Reader.php
src/Reader.php
<?php namespace Maatwebsite\Excel; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Support\Collection; use InvalidArgumentException; use Maatwebsite\Excel\Concerns\HasReferencesToOtherSheets; use Maatwebsite\Excel\Concerns\SkipsUnknownSheets; use Maatwebsite\Excel\Concerns\WithCalculatedFormulas; use Maatw...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/ChunkReader.php
src/ChunkReader.php
<?php namespace Maatwebsite\Excel; use Illuminate\Bus\Queueable; use Illuminate\Container\Container; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Foundation\Bus\PendingDispatch; use Illuminate\Queue\InteractsWithQueue; use Illuminate\Queue\Jobs\SyncJob; use Illuminate\Support\Collection; use Maatwebsite...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Writer.php
src/Writer.php
<?php namespace Maatwebsite\Excel; use Maatwebsite\Excel\Concerns\WithBackgroundColor; use Maatwebsite\Excel\Concerns\WithCustomValueBinder; use Maatwebsite\Excel\Concerns\WithDefaultStyles; use Maatwebsite\Excel\Concerns\WithEvents; use Maatwebsite\Excel\Concerns\WithMultipleSheets; use Maatwebsite\Excel\Concerns\Wi...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/MappedReader.php
src/MappedReader.php
<?php namespace Maatwebsite\Excel; use Illuminate\Support\Collection; use Maatwebsite\Excel\Concerns\ToArray; use Maatwebsite\Excel\Concerns\ToCollection; use Maatwebsite\Excel\Concerns\ToModel; use Maatwebsite\Excel\Concerns\WithCalculatedFormulas; use Maatwebsite\Excel\Concerns\WithFormatData; use Maatwebsite\Excel...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Cell.php
src/Cell.php
<?php namespace Maatwebsite\Excel; use Illuminate\Pipeline\Pipeline; use PhpOffice\PhpSpreadsheet\Calculation\Exception; use PhpOffice\PhpSpreadsheet\Cell\Cell as SpreadsheetCell; use PhpOffice\PhpSpreadsheet\RichText\RichText; use PhpOffice\PhpSpreadsheet\Style\NumberFormat; use PhpOffice\PhpSpreadsheet\Worksheet\Wo...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/QueuedWriter.php
src/QueuedWriter.php
<?php namespace Maatwebsite\Excel; use Illuminate\Foundation\Bus\PendingDispatch; use Illuminate\Support\Collection; use Illuminate\Support\LazyCollection; use Maatwebsite\Excel\Concerns\FromCollection; use Maatwebsite\Excel\Concerns\FromQuery; use Maatwebsite\Excel\Concerns\FromView; use Maatwebsite\Excel\Concerns\W...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Exporter.php
src/Exporter.php
<?php namespace Maatwebsite\Excel; interface Exporter { /** * @param object $export * @param string|null $fileName * @param string $writerType * @param array $headers * @return \Symfony\Component\HttpFoundation\BinaryFileResponse * * @throws \PhpOffice\PhpSpreadsheet\Exc...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/HasEventBus.php
src/HasEventBus.php
<?php namespace Maatwebsite\Excel; trait HasEventBus { /** * @var array */ protected static $globalEvents = []; /** * @var array */ protected $events = []; /** * Register local event listeners. * * @param array $listeners */ public function registerL...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/SettingsProvider.php
src/SettingsProvider.php
<?php namespace Maatwebsite\Excel; use Maatwebsite\Excel\Cache\CacheManager; use PhpOffice\PhpSpreadsheet\Settings; class SettingsProvider { /** * @var CacheManager */ private $cache; public function __construct(CacheManager $cache) { $this->cache = $cache; } /** * Pr...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Row.php
src/Row.php
<?php namespace Maatwebsite\Excel; use ArrayAccess; use Closure; use Illuminate\Support\Collection; use PhpOffice\PhpSpreadsheet\Worksheet\Row as SpreadsheetRow; /** @mixin SpreadsheetRow */ class Row implements ArrayAccess { use DelegatedMacroable; /** * @var array */ protected $headingRow = ...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Importer.php
src/Importer.php
<?php namespace Maatwebsite\Excel; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Support\Collection; interface Importer { /** * @param object $import * @param string|\Symfony\Component\HttpFoundation\File\UploadedFile $filePath * @param string|null $disk * @param string|nu...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/DelegatedMacroable.php
src/DelegatedMacroable.php
<?php namespace Maatwebsite\Excel; use Illuminate\Support\Traits\Macroable; trait DelegatedMacroable { use Macroable { __call as __callMacro; } /** * Dynamically handle calls to the class. * * @param string $method * @param array $parameters * @return mixed */ ...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Excel.php
src/Excel.php
<?php namespace Maatwebsite\Excel; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Foundation\Bus\PendingDispatch; use Illuminate\Support\Collection; use Illuminate\Support\Traits\Macroable; use Maatwebsite\Excel\Files\Filesystem; use Maatwebsite\Excel\Files\TemporaryFile; use Maatwebsite\Excel\Helpers\Fil...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/ExcelServiceProvider.php
src/ExcelServiceProvider.php
<?php namespace Maatwebsite\Excel; use Illuminate\Database\Eloquent\Builder; use Illuminate\Support\Collection; use Illuminate\Support\ServiceProvider; use Laravel\Lumen\Application as LumenApplication; use Maatwebsite\Excel\Cache\CacheManager; use Maatwebsite\Excel\Console\ExportMakeCommand; use Maatwebsite\Excel\Co...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Sheet.php
src/Sheet.php
<?php namespace Maatwebsite\Excel; use Closure; use Illuminate\Contracts\Support\Arrayable; use Illuminate\Support\Collection; use Illuminate\Support\LazyCollection; use Maatwebsite\Excel\Concerns\FromArray; use Maatwebsite\Excel\Concerns\FromCollection; use Maatwebsite\Excel\Concerns\FromGenerator; use Maatwebsite\E...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/DefaultValueBinder.php
src/DefaultValueBinder.php
<?php namespace Maatwebsite\Excel; use PhpOffice\PhpSpreadsheet\Cell\Cell; use PhpOffice\PhpSpreadsheet\Cell\DefaultValueBinder as PhpSpreadsheetDefaultValueBinder; class DefaultValueBinder extends PhpSpreadsheetDefaultValueBinder { /** * @param Cell $cell Cell to bind value to * @param mixed $val...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/HeadingRowImport.php
src/HeadingRowImport.php
<?php namespace Maatwebsite\Excel; use Maatwebsite\Excel\Concerns\Importable; use Maatwebsite\Excel\Concerns\WithLimit; use Maatwebsite\Excel\Concerns\WithMapping; use Maatwebsite\Excel\Concerns\WithStartRow; use Maatwebsite\Excel\Imports\HeadingRowFormatter; class HeadingRowImport implements WithStartRow, WithLimit...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/RegistersCustomConcerns.php
src/RegistersCustomConcerns.php
<?php namespace Maatwebsite\Excel; use Maatwebsite\Excel\Events\AfterSheet; use Maatwebsite\Excel\Events\BeforeExport; use Maatwebsite\Excel\Events\BeforeSheet; use Maatwebsite\Excel\Events\BeforeWriting; use Maatwebsite\Excel\Events\Event; trait RegistersCustomConcerns { /** * @var array */ privat...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Files/TemporaryFileFactory.php
src/Files/TemporaryFileFactory.php
<?php namespace Maatwebsite\Excel\Files; use Illuminate\Support\Str; class TemporaryFileFactory { /** * @var string|null */ private $temporaryPath; /** * @var string|null */ private $temporaryDisk; /** * @param string|null $temporaryPath * @param string|null $t...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Files/Filesystem.php
src/Files/Filesystem.php
<?php namespace Maatwebsite\Excel\Files; use Illuminate\Contracts\Filesystem\Factory; class Filesystem { /** * @var Factory */ private $filesystem; /** * @param Factory $filesystem */ public function __construct(Factory $filesystem) { $this->filesystem = $filesystem...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Files/LocalTemporaryFile.php
src/Files/LocalTemporaryFile.php
<?php namespace Maatwebsite\Excel\Files; class LocalTemporaryFile extends TemporaryFile { /** * @var string */ private $filePath; /** * @param string $filePath */ public function __construct(string $filePath) { touch($filePath); if (($rights = config('excel.t...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Files/Disk.php
src/Files/Disk.php
<?php namespace Maatwebsite\Excel\Files; use Illuminate\Contracts\Filesystem\Filesystem as IlluminateFilesystem; /** * @method bool get(string $filename) * @method resource readStream(string $filename) * @method bool delete(string $filename) * @method bool exists(string $filename) */ class Disk { /** *...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Files/RemoteTemporaryFile.php
src/Files/RemoteTemporaryFile.php
<?php namespace Maatwebsite\Excel\Files; use Illuminate\Support\Arr; class RemoteTemporaryFile extends TemporaryFile { /** * @var string */ private $disk; /** * @var Disk|null */ private $diskInstance; /** * @var string */ private $filename; /** * @va...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Files/TemporaryFile.php
src/Files/TemporaryFile.php
<?php namespace Maatwebsite\Excel\Files; use Illuminate\Contracts\Filesystem\FileNotFoundException; use Symfony\Component\HttpFoundation\File\UploadedFile; abstract class TemporaryFile { /** * @return string */ abstract public function getLocalPath(): string; /** * @return bool */ ...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Jobs/CloseSheet.php
src/Jobs/CloseSheet.php
<?php namespace Maatwebsite\Excel\Jobs; use Illuminate\Bus\Queueable; use Illuminate\Contracts\Queue\ShouldQueue; use Maatwebsite\Excel\Concerns\WithEvents; use Maatwebsite\Excel\Files\TemporaryFile; use Maatwebsite\Excel\Writer; class CloseSheet implements ShouldQueue { use Queueable, ProxyFailures; /** ...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Jobs/AppendQueryToSheet.php
src/Jobs/AppendQueryToSheet.php
<?php namespace Maatwebsite\Excel\Jobs; use Illuminate\Bus\Queueable; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Foundation\Bus\Dispatchable; use Illuminate\Queue\InteractsWithQueue; use Maatwebsite\Excel\Concerns\FromQuery; use Maatwebsite\Excel\Concerns\WithEvents; use Maatwebsite\Excel\Events\After...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Jobs/QueueImport.php
src/Jobs/QueueImport.php
<?php namespace Maatwebsite\Excel\Jobs; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Foundation\Bus\Dispatchable; class QueueImport implements ShouldQueue { use ExtendedQueueable, Dispatchable; /** * @var int */ public $tries; /** * @var int */ public $timeout;...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Jobs/AppendDataToSheet.php
src/Jobs/AppendDataToSheet.php
<?php namespace Maatwebsite\Excel\Jobs; use Illuminate\Bus\Queueable; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Foundation\Bus\Dispatchable; use Illuminate\Queue\InteractsWithQueue; use Maatwebsite\Excel\Files\TemporaryFile; use Maatwebsite\Excel\Jobs\Middleware\LocalizeJob; use Maatwebsite\Excel\Wri...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Jobs/AppendPaginatedToSheet.php
src/Jobs/AppendPaginatedToSheet.php
<?php namespace Maatwebsite\Excel\Jobs; use Illuminate\Bus\Queueable; 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\Foundation\Bus\Dispatchable; use Ill...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Jobs/ExtendedQueueable.php
src/Jobs/ExtendedQueueable.php
<?php namespace Maatwebsite\Excel\Jobs; use Illuminate\Bus\Queueable; trait ExtendedQueueable { use Queueable { chain as originalChain; } /** * @param $chain * @return $this */ public function chain($chain) { collect($chain)->each(function ($job) { $se...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Jobs/AfterImportJob.php
src/Jobs/AfterImportJob.php
<?php namespace Maatwebsite\Excel\Jobs; use Illuminate\Bus\Queueable; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Queue\InteractsWithQueue; use Illuminate\Support\Collection; use Maatwebsite\Excel\Concerns\WithEvents; use Maatwebsite\Excel\Events\ImportFailed; use Maatwebsite\Excel\HasEventBus; use Maa...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Jobs/ProxyFailures.php
src/Jobs/ProxyFailures.php
<?php namespace Maatwebsite\Excel\Jobs; use Throwable; trait ProxyFailures { /** * @param Throwable $e */ public function failed(Throwable $e) { if (method_exists($this->sheetExport, 'failed')) { $this->sheetExport->failed($e); } } }
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Jobs/QueueExport.php
src/Jobs/QueueExport.php
<?php namespace Maatwebsite\Excel\Jobs; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Foundation\Bus\Dispatchable; use Illuminate\Queue\InteractsWithQueue; use Maatwebsite\Excel\Concerns\WithMultipleSheets; use Maatwebsite\Excel\Exceptions\NoSheetsFoundException; use Maatwebsite\Excel\Files\TemporaryFile...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Jobs/StoreQueuedExport.php
src/Jobs/StoreQueuedExport.php
<?php namespace Maatwebsite\Excel\Jobs; use Illuminate\Bus\Queueable; use Illuminate\Contracts\Queue\ShouldQueue; use Maatwebsite\Excel\Files\Filesystem; use Maatwebsite\Excel\Files\TemporaryFile; class StoreQueuedExport implements ShouldQueue { use Queueable; /** * @var string */ private $fil...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Jobs/AppendViewToSheet.php
src/Jobs/AppendViewToSheet.php
<?php namespace Maatwebsite\Excel\Jobs; use Illuminate\Bus\Queueable; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Foundation\Bus\Dispatchable; use Illuminate\Queue\InteractsWithQueue; use Maatwebsite\Excel\Concerns\FromView; use Maatwebsite\Excel\Files\TemporaryFile; use Maatwebsite\Excel\Jobs\Middlewa...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Jobs/ReadChunk.php
src/Jobs/ReadChunk.php
<?php namespace Maatwebsite\Excel\Jobs; use Illuminate\Bus\Queueable; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Queue\InteractsWithQueue; use Illuminate\Support\Facades\Cache; use Maatwebsite\Excel\Concerns\WithChunkReading; use Maatwebsite\Excel\Concerns\WithCustomValueBinder; use Maatwebsite\Excel\...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Jobs/Middleware/LocalizeJob.php
src/Jobs/Middleware/LocalizeJob.php
<?php namespace Maatwebsite\Excel\Jobs\Middleware; use Closure; use Illuminate\Contracts\Translation\HasLocalePreference; use Illuminate\Support\Traits\Localizable; class LocalizeJob { use Localizable; /** * @var object */ private $localizable; /** * LocalizeJob constructor. * ...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Exceptions/ConcernConflictException.php
src/Exceptions/ConcernConflictException.php
<?php namespace Maatwebsite\Excel\Exceptions; use LogicException; class ConcernConflictException extends LogicException implements LaravelExcelException { /** * @return ConcernConflictException */ public static function queryOrCollectionAndView() { return new static('Cannot use FromQuer...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Exceptions/RowSkippedException.php
src/Exceptions/RowSkippedException.php
<?php namespace Maatwebsite\Excel\Exceptions; use Exception; use Illuminate\Support\Collection; use Maatwebsite\Excel\Validators\Failure; class RowSkippedException extends Exception { /** * @var Failure[] */ private $failures; /** * @param Failure ...$failures */ public functio...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Exceptions/NoFilenameGivenException.php
src/Exceptions/NoFilenameGivenException.php
<?php namespace Maatwebsite\Excel\Exceptions; use InvalidArgumentException; use Throwable; class NoFilenameGivenException extends InvalidArgumentException implements LaravelExcelException { /** * @param string $message * @param int $code * @param Throwable|null $previous */ public f...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Exceptions/UnreadableFileException.php
src/Exceptions/UnreadableFileException.php
<?php namespace Maatwebsite\Excel\Exceptions; use Exception; use Throwable; class UnreadableFileException extends Exception implements LaravelExcelException { /** * @param string $message * @param int $code * @param Throwable|null $previous */ public function __construct( $m...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Exceptions/SheetNotFoundException.php
src/Exceptions/SheetNotFoundException.php
<?php namespace Maatwebsite\Excel\Exceptions; class SheetNotFoundException extends \Exception implements LaravelExcelException { /** * @param string $name * @return SheetNotFoundException */ public static function byName(string $name): SheetNotFoundException { return new static("Y...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Exceptions/NoFilePathGivenException.php
src/Exceptions/NoFilePathGivenException.php
<?php namespace Maatwebsite\Excel\Exceptions; use InvalidArgumentException; use Throwable; class NoFilePathGivenException extends InvalidArgumentException implements LaravelExcelException { /** * @param string $message * @param int $code * @param Throwable|null $previous */ public f...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Exceptions/NoTypeDetectedException.php
src/Exceptions/NoTypeDetectedException.php
<?php namespace Maatwebsite\Excel\Exceptions; use Exception; use Throwable; class NoTypeDetectedException extends Exception implements LaravelExcelException { /** * @param string $message * @param int $code * @param Throwable|null $previous */ public function __construct( $m...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Exceptions/NoSheetsFoundException.php
src/Exceptions/NoSheetsFoundException.php
<?php namespace Maatwebsite\Excel\Exceptions; use LogicException; class NoSheetsFoundException extends LogicException implements LaravelExcelException { }
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Exceptions/LaravelExcelException.php
src/Exceptions/LaravelExcelException.php
<?php namespace Maatwebsite\Excel\Exceptions; use Throwable; interface LaravelExcelException extends Throwable { }
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Helpers/ArrayHelper.php
src/Helpers/ArrayHelper.php
<?php namespace Maatwebsite\Excel\Helpers; class ArrayHelper { /** * @param array $array * @return array */ public static function ensureMultipleRows(array $array): array { if (static::hasMultipleRows($array)) { return $array; } return [$array]; } ...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Helpers/FileTypeDetector.php
src/Helpers/FileTypeDetector.php
<?php namespace Maatwebsite\Excel\Helpers; use Maatwebsite\Excel\Exceptions\NoTypeDetectedException; use Symfony\Component\HttpFoundation\File\UploadedFile; class FileTypeDetector { /** * @param $filePath * @param string|null $type * @return string|null * * @throws NoTypeDetectedExcep...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Helpers/CellHelper.php
src/Helpers/CellHelper.php
<?php namespace Maatwebsite\Excel\Helpers; class CellHelper { /** * @param string $coordinate * @return string */ public static function getColumnFromCoordinate(string $coordinate): string { return preg_replace('/[0-9]/', '', $coordinate); } }
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Imports/HeadingRowFormatter.php
src/Imports/HeadingRowFormatter.php
<?php namespace Maatwebsite\Excel\Imports; use Illuminate\Support\Collection; use Illuminate\Support\Str; use InvalidArgumentException; class HeadingRowFormatter { /** * @const string */ const FORMATTER_NONE = 'none'; /** * @const string */ const FORMATTER_SLUG = 'slug'; /**...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Imports/EndRowFinder.php
src/Imports/EndRowFinder.php
<?php namespace Maatwebsite\Excel\Imports; use Maatwebsite\Excel\Concerns\WithLimit; class EndRowFinder { /** * @param object|WithLimit $import * @param int $startRow * @param int|null $highestRow * @return int|null */ public static function find($import, ?int $startRow = null,...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Imports/HeadingRowExtractor.php
src/Imports/HeadingRowExtractor.php
<?php namespace Maatwebsite\Excel\Imports; use Maatwebsite\Excel\Concerns\WithColumnLimit; use Maatwebsite\Excel\Concerns\WithGroupedHeadingRow; use Maatwebsite\Excel\Concerns\WithHeadingRow; use Maatwebsite\Excel\Concerns\WithStartRow; use Maatwebsite\Excel\Row; use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; cla...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Imports/ModelManager.php
src/Imports/ModelManager.php
<?php namespace Maatwebsite\Excel\Imports; use Illuminate\Database\Eloquent\Model; use Illuminate\Support\Collection; use Maatwebsite\Excel\Concerns\PersistRelations; use Maatwebsite\Excel\Concerns\SkipsOnError; use Maatwebsite\Excel\Concerns\ToModel; use Maatwebsite\Excel\Concerns\WithSkipDuplicates; use Maatwebsite...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Imports/ModelImporter.php
src/Imports/ModelImporter.php
<?php namespace Maatwebsite\Excel\Imports; use Maatwebsite\Excel\Concerns\SkipsEmptyRows; use Maatwebsite\Excel\Concerns\ToModel; use Maatwebsite\Excel\Concerns\WithBatchInserts; use Maatwebsite\Excel\Concerns\WithCalculatedFormulas; use Maatwebsite\Excel\Concerns\WithColumnLimit; use Maatwebsite\Excel\Concerns\WithE...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Imports/Persistence/CascadePersistManager.php
src/Imports/Persistence/CascadePersistManager.php
<?php namespace Maatwebsite\Excel\Imports\Persistence; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Relations\BelongsTo; use Illuminate\Database\Eloquent\Relations\BelongsToMany; use Illuminate\Support\Collection; use Maatwebsite\Excel\Transactions\TransactionHandler; /** @todo */ class ...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Fakes/ExcelFake.php
src/Fakes/ExcelFake.php
<?php namespace Maatwebsite\Excel\Fakes; use Illuminate\Bus\Queueable; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Foundation\Bus\PendingDispatch; use Illuminate\Support\Collection; use Illuminate\Support\Facades\Queue; use Illuminate\Support\Traits\Macroable; use Maatwebsite\Excel\Exporter; use Maatwe...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Mixins/StoreCollectionMixin.php
src/Mixins/StoreCollectionMixin.php
<?php namespace Maatwebsite\Excel\Mixins; use Illuminate\Support\Collection; use Maatwebsite\Excel\Concerns\Exportable; use Maatwebsite\Excel\Concerns\FromCollection; use Maatwebsite\Excel\Concerns\WithHeadings; class StoreCollectionMixin { /** * @return callable */ public function storeExcel() ...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Mixins/ImportMacro.php
src/Mixins/ImportMacro.php
<?php namespace Maatwebsite\Excel\Mixins; use Illuminate\Database\Eloquent\Model; use Maatwebsite\Excel\Concerns\Importable; use Maatwebsite\Excel\Concerns\ToModel; use Maatwebsite\Excel\Concerns\WithHeadingRow; class ImportMacro { public function __invoke() { return function (string $filename, ?stri...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Mixins/StoreQueryMacro.php
src/Mixins/StoreQueryMacro.php
<?php namespace Maatwebsite\Excel\Mixins; use Illuminate\Database\Eloquent\Builder; use Maatwebsite\Excel\Concerns\Exportable; use Maatwebsite\Excel\Concerns\FromQuery; use Maatwebsite\Excel\Concerns\WithHeadings; use Maatwebsite\Excel\Sheet; class StoreQueryMacro { public function __invoke() { retur...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Mixins/DownloadCollectionMixin.php
src/Mixins/DownloadCollectionMixin.php
<?php namespace Maatwebsite\Excel\Mixins; use Illuminate\Contracts\Support\Arrayable; use Illuminate\Support\Collection; use Maatwebsite\Excel\Concerns\Exportable; use Maatwebsite\Excel\Concerns\FromCollection; use Maatwebsite\Excel\Concerns\WithHeadings; use Maatwebsite\Excel\Sheet; class DownloadCollectionMixin { ...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Mixins/DownloadQueryMacro.php
src/Mixins/DownloadQueryMacro.php
<?php namespace Maatwebsite\Excel\Mixins; use Illuminate\Database\Eloquent\Builder; use Maatwebsite\Excel\Concerns\Exportable; use Maatwebsite\Excel\Concerns\FromQuery; use Maatwebsite\Excel\Concerns\WithHeadings; use Maatwebsite\Excel\Sheet; class DownloadQueryMacro { public function __invoke() { re...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Mixins/ImportAsMacro.php
src/Mixins/ImportAsMacro.php
<?php namespace Maatwebsite\Excel\Mixins; use Illuminate\Database\Eloquent\Model; use Maatwebsite\Excel\Concerns\Importable; use Maatwebsite\Excel\Concerns\ToModel; class ImportAsMacro { public function __invoke() { return function (string $filename, callable $mapping, ?string $disk = null, ?string $...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Transactions/TransactionHandler.php
src/Transactions/TransactionHandler.php
<?php namespace Maatwebsite\Excel\Transactions; interface TransactionHandler { /** * @param callable $callback * @return mixed */ public function __invoke(callable $callback); }
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false
SpartnerNL/Laravel-Excel
https://github.com/SpartnerNL/Laravel-Excel/blob/b31b6f4eabd8b5ff3f873e808abd183d3f5cb244/src/Transactions/DbTransactionHandler.php
src/Transactions/DbTransactionHandler.php
<?php namespace Maatwebsite\Excel\Transactions; use Illuminate\Database\ConnectionInterface; class DbTransactionHandler implements TransactionHandler { /** * @var ConnectionInterface */ private $connection; /** * @param ConnectionInterface $connection */ public function __const...
php
MIT
b31b6f4eabd8b5ff3f873e808abd183d3f5cb244
2026-01-04T15:03:06.866936Z
false