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 |
|---|---|---|---|---|---|---|---|---|
barryvdh/laravel-debugbar | https://github.com/barryvdh/laravel-debugbar/blob/7e9719db094762f08f998521dcc048321d936bcb/src/Twig/Extension/Stopwatch.php | src/Twig/Extension/Stopwatch.php | <?php
declare(strict_types=1);
namespace Barryvdh\Debugbar\Twig\Extension;
use DebugBar\Bridge\Twig\MeasureTwigExtension;
use DebugBar\Bridge\Twig\MeasureTwigTokenParser;
use Illuminate\Foundation\Application;
/**
* Access debugbar time measures in your Twig templates.
* Based on Symfony\Bridge\Twig\Extension\Sto... | php | MIT | 7e9719db094762f08f998521dcc048321d936bcb | 2026-01-04T15:02:34.390506Z | false |
barryvdh/laravel-debugbar | https://github.com/barryvdh/laravel-debugbar/blob/7e9719db094762f08f998521dcc048321d936bcb/src/Twig/Extension/Dump.php | src/Twig/Extension/Dump.php | <?php
declare(strict_types=1);
namespace Barryvdh\Debugbar\Twig\Extension;
use DebugBar\Bridge\Twig\DumpTwigExtension;
/**
* Dump variables using the DataFormatter
*/
class Dump extends DumpTwigExtension {}
| php | MIT | 7e9719db094762f08f998521dcc048321d936bcb | 2026-01-04T15:02:34.390506Z | false |
barryvdh/laravel-debugbar | https://github.com/barryvdh/laravel-debugbar/blob/7e9719db094762f08f998521dcc048321d936bcb/src/Twig/Extension/Debug.php | src/Twig/Extension/Debug.php | <?php
declare(strict_types=1);
namespace Barryvdh\Debugbar\Twig\Extension;
use DebugBar\Bridge\Twig\DebugTwigExtension;
use Illuminate\Foundation\Application;
use Twig\Environment;
/**
* Access debugbar debug in your Twig templates.
*/
class Debug extends DebugTwigExtension
{
protected $app;
/**
* C... | php | MIT | 7e9719db094762f08f998521dcc048321d936bcb | 2026-01-04T15:02:34.390506Z | false |
barryvdh/laravel-debugbar | https://github.com/barryvdh/laravel-debugbar/blob/7e9719db094762f08f998521dcc048321d936bcb/src/Support/Explain.php | src/Support/Explain.php | <?php
declare(strict_types=1);
namespace Barryvdh\Debugbar\Support;
use Exception;
use Illuminate\Database\ConnectionInterface;
use Illuminate\Database\QueryException;
use Illuminate\Support\Facades\DB;
use Illuminate\Support\Facades\Http;
class Explain
{
public function isVisualExplainSupported(string $connect... | php | MIT | 7e9719db094762f08f998521dcc048321d936bcb | 2026-01-04T15:02:34.390506Z | false |
barryvdh/laravel-debugbar | https://github.com/barryvdh/laravel-debugbar/blob/7e9719db094762f08f998521dcc048321d936bcb/src/Support/RequestIdGenerator.php | src/Support/RequestIdGenerator.php | <?php
declare(strict_types=1);
namespace Barryvdh\Debugbar\Support;
use DebugBar\RequestIdGeneratorInterface;
use Illuminate\Support\Str;
class RequestIdGenerator implements RequestIdGeneratorInterface
{
public function generate(): string
{
return (string) Str::ulid();
}
}
| php | MIT | 7e9719db094762f08f998521dcc048321d936bcb | 2026-01-04T15:02:34.390506Z | false |
barryvdh/laravel-debugbar | https://github.com/barryvdh/laravel-debugbar/blob/7e9719db094762f08f998521dcc048321d936bcb/src/Support/Clockwork/Converter.php | src/Support/Clockwork/Converter.php | <?php
declare(strict_types=1);
namespace Barryvdh\Debugbar\Support\Clockwork;
class Converter
{
/**
* Convert the phpdebugbar data to Clockwork format.
*
* @param array $data
*
* @return array
*/
public function convert($data)
{
$meta = $data['__meta'];
// D... | php | MIT | 7e9719db094762f08f998521dcc048321d936bcb | 2026-01-04T15:02:34.390506Z | false |
barryvdh/laravel-debugbar | https://github.com/barryvdh/laravel-debugbar/blob/7e9719db094762f08f998521dcc048321d936bcb/src/Support/Clockwork/ClockworkCollector.php | src/Support/Clockwork/ClockworkCollector.php | <?php
declare(strict_types=1);
namespace Barryvdh\Debugbar\Support\Clockwork;
use DebugBar\DataCollector\DataCollector;
use DebugBar\DataCollector\DataCollectorInterface;
use DebugBar\DataCollector\Renderable;
use Illuminate\Session\SessionManager;
use Illuminate\Support\Arr;
use Symfony\Component\HttpFoundation\Req... | php | MIT | 7e9719db094762f08f998521dcc048321d936bcb | 2026-01-04T15:02:34.390506Z | false |
barryvdh/laravel-debugbar | https://github.com/barryvdh/laravel-debugbar/blob/7e9719db094762f08f998521dcc048321d936bcb/src/Storage/FilesystemStorage.php | src/Storage/FilesystemStorage.php | <?php
declare(strict_types=1);
namespace Barryvdh\Debugbar\Storage;
use DebugBar\Storage\StorageInterface;
use Illuminate\Filesystem\Filesystem;
use Symfony\Component\Finder\Finder;
/**
* Stores collected data into files
*/
class FilesystemStorage implements StorageInterface
{
protected string $dirname;
p... | php | MIT | 7e9719db094762f08f998521dcc048321d936bcb | 2026-01-04T15:02:34.390506Z | false |
barryvdh/laravel-debugbar | https://github.com/barryvdh/laravel-debugbar/blob/7e9719db094762f08f998521dcc048321d936bcb/src/DataCollector/LogsCollector.php | src/DataCollector/LogsCollector.php | <?php
declare(strict_types=1);
namespace Barryvdh\Debugbar\DataCollector;
use DebugBar\DataCollector\MessagesCollector;
use Illuminate\Support\Arr;
use Psr\Log\LogLevel;
use ReflectionClass;
class LogsCollector extends MessagesCollector
{
protected $lines = 124;
public function __construct(string|array|nul... | php | MIT | 7e9719db094762f08f998521dcc048321d936bcb | 2026-01-04T15:02:34.390506Z | false |
barryvdh/laravel-debugbar | https://github.com/barryvdh/laravel-debugbar/blob/7e9719db094762f08f998521dcc048321d936bcb/src/DataCollector/LaravelCollector.php | src/DataCollector/LaravelCollector.php | <?php
declare(strict_types=1);
namespace Barryvdh\Debugbar\DataCollector;
use DebugBar\DataCollector\DataCollector;
use DebugBar\DataCollector\Renderable;
use Illuminate\Contracts\Foundation\Application as ApplicationContract;
use Illuminate\Support\Str;
class LaravelCollector extends DataCollector implements Rende... | php | MIT | 7e9719db094762f08f998521dcc048321d936bcb | 2026-01-04T15:02:34.390506Z | false |
barryvdh/laravel-debugbar | https://github.com/barryvdh/laravel-debugbar/blob/7e9719db094762f08f998521dcc048321d936bcb/src/DataCollector/EventCollector.php | src/DataCollector/EventCollector.php | <?php
declare(strict_types=1);
namespace Barryvdh\Debugbar\DataCollector;
use DebugBar\DataCollector\TimeDataCollector;
use DebugBar\DataFormatter\SimpleFormatter;
use Illuminate\Events\Dispatcher;
use Illuminate\Support\Str;
class EventCollector extends TimeDataCollector
{
protected ?Dispatcher $events;
p... | php | MIT | 7e9719db094762f08f998521dcc048321d936bcb | 2026-01-04T15:02:34.390506Z | false |
barryvdh/laravel-debugbar | https://github.com/barryvdh/laravel-debugbar/blob/7e9719db094762f08f998521dcc048321d936bcb/src/DataCollector/RequestCollector.php | src/DataCollector/RequestCollector.php | <?php
declare(strict_types=1);
namespace Barryvdh\Debugbar\DataCollector;
use DebugBar\DataCollector\DataCollector;
use DebugBar\DataCollector\DataCollectorInterface;
use DebugBar\DataCollector\Renderable;
use Illuminate\Support\Arr;
use Illuminate\Support\Facades\Config;
use Illuminate\Support\Str;
use Laravel\Tele... | php | MIT | 7e9719db094762f08f998521dcc048321d936bcb | 2026-01-04T15:02:34.390506Z | false |
barryvdh/laravel-debugbar | https://github.com/barryvdh/laravel-debugbar/blob/7e9719db094762f08f998521dcc048321d936bcb/src/DataCollector/ViewCollector.php | src/DataCollector/ViewCollector.php | <?php
declare(strict_types=1);
namespace Barryvdh\Debugbar\DataCollector;
use DebugBar\DataCollector\TemplateCollector;
use Illuminate\View\View;
class ViewCollector extends TemplateCollector
{
public function getName(): string
{
return 'views';
}
/**
* Add a View instance to the Colle... | php | MIT | 7e9719db094762f08f998521dcc048321d936bcb | 2026-01-04T15:02:34.390506Z | false |
barryvdh/laravel-debugbar | https://github.com/barryvdh/laravel-debugbar/blob/7e9719db094762f08f998521dcc048321d936bcb/src/DataCollector/ConfigCollector.php | src/DataCollector/ConfigCollector.php | <?php
declare(strict_types=1);
namespace Barryvdh\Debugbar\DataCollector;
use Illuminate\Config\Repository;
class ConfigCollector extends \DebugBar\DataCollector\ConfigCollector
{
protected Repository $config;
public function __construct(Repository $config, $name = 'config')
{
$this->config = $... | php | MIT | 7e9719db094762f08f998521dcc048321d936bcb | 2026-01-04T15:02:34.390506Z | false |
barryvdh/laravel-debugbar | https://github.com/barryvdh/laravel-debugbar/blob/7e9719db094762f08f998521dcc048321d936bcb/src/DataCollector/QueryCollector.php | src/DataCollector/QueryCollector.php | <?php
declare(strict_types=1);
namespace Barryvdh\Debugbar\DataCollector;
use Barryvdh\Debugbar\Support\Explain;
use DebugBar\DataCollector\AssetProvider;
use DebugBar\DataCollector\DataCollector;
use DebugBar\DataCollector\Renderable;
use DebugBar\DataCollector\TimeDataCollector;
use DebugBar\DataFormatter\QueryFor... | php | MIT | 7e9719db094762f08f998521dcc048321d936bcb | 2026-01-04T15:02:34.390506Z | false |
barryvdh/laravel-debugbar | https://github.com/barryvdh/laravel-debugbar/blob/7e9719db094762f08f998521dcc048321d936bcb/src/DataCollector/RouteCollector.php | src/DataCollector/RouteCollector.php | <?php
declare(strict_types=1);
namespace Barryvdh\Debugbar\DataCollector;
use Closure;
use DebugBar\DataCollector\DataCollector;
use DebugBar\DataCollector\Renderable;
use Illuminate\Routing\Router;
/**
* Based on Illuminate\Foundation\Console\RoutesCommand for Taylor Otwell
* https://github.com/laravel/framework... | php | MIT | 7e9719db094762f08f998521dcc048321d936bcb | 2026-01-04T15:02:34.390506Z | false |
barryvdh/laravel-debugbar | https://github.com/barryvdh/laravel-debugbar/blob/7e9719db094762f08f998521dcc048321d936bcb/src/DataCollector/LivewireCollector.php | src/DataCollector/LivewireCollector.php | <?php
declare(strict_types=1);
namespace Barryvdh\Debugbar\DataCollector;
use DebugBar\DataCollector\DataCollector;
use DebugBar\DataCollector\DataCollectorInterface;
use DebugBar\DataCollector\Renderable;
use Illuminate\Contracts\View\View;
use Illuminate\Http\Request;
use Livewire\Livewire;
use Livewire\Component;... | php | MIT | 7e9719db094762f08f998521dcc048321d936bcb | 2026-01-04T15:02:34.390506Z | false |
barryvdh/laravel-debugbar | https://github.com/barryvdh/laravel-debugbar/blob/7e9719db094762f08f998521dcc048321d936bcb/src/DataCollector/PennantCollector.php | src/DataCollector/PennantCollector.php | <?php
declare(strict_types=1);
namespace Barryvdh\Debugbar\DataCollector;
use DebugBar\DataCollector\DataCollector;
use DebugBar\DataCollector\DataCollectorInterface;
use DebugBar\DataCollector\Renderable;
use Illuminate\Support\Facades\Config;
use Laravel\Pennant\FeatureManager;
class PennantCollector extends Data... | php | MIT | 7e9719db094762f08f998521dcc048321d936bcb | 2026-01-04T15:02:34.390506Z | false |
barryvdh/laravel-debugbar | https://github.com/barryvdh/laravel-debugbar/blob/7e9719db094762f08f998521dcc048321d936bcb/src/DataCollector/MultiAuthCollector.php | src/DataCollector/MultiAuthCollector.php | <?php
declare(strict_types=1);
namespace Barryvdh\Debugbar\DataCollector;
use DebugBar\DataCollector\DataCollector;
use DebugBar\DataCollector\Renderable;
use Illuminate\Contracts\Auth\Authenticatable;
use Illuminate\Contracts\Auth\Guard;
use Illuminate\Support\Str;
use Illuminate\Contracts\Support\Arrayable;
/**
... | php | MIT | 7e9719db094762f08f998521dcc048321d936bcb | 2026-01-04T15:02:34.390506Z | false |
barryvdh/laravel-debugbar | https://github.com/barryvdh/laravel-debugbar/blob/7e9719db094762f08f998521dcc048321d936bcb/src/DataCollector/GateCollector.php | src/DataCollector/GateCollector.php | <?php
declare(strict_types=1);
namespace Barryvdh\Debugbar\DataCollector;
use DebugBar\DataCollector\MessagesCollector;
use DebugBar\DataFormatter\SimpleFormatter;
use Illuminate\Auth\Access\Response;
use Illuminate\Contracts\Auth\Access\Gate;
use Illuminate\Contracts\Auth\Authenticatable;
use Illuminate\Database\El... | php | MIT | 7e9719db094762f08f998521dcc048321d936bcb | 2026-01-04T15:02:34.390506Z | false |
barryvdh/laravel-debugbar | https://github.com/barryvdh/laravel-debugbar/blob/7e9719db094762f08f998521dcc048321d936bcb/src/DataCollector/SessionCollector.php | src/DataCollector/SessionCollector.php | <?php
declare(strict_types=1);
namespace Barryvdh\Debugbar\DataCollector;
use DebugBar\DataCollector\DataCollector;
use DebugBar\DataCollector\DataCollectorInterface;
use DebugBar\DataCollector\Renderable;
use Illuminate\Support\Arr;
use Symfony\Component\HttpFoundation\Session\SessionInterface;
class SessionCollec... | php | MIT | 7e9719db094762f08f998521dcc048321d936bcb | 2026-01-04T15:02:34.390506Z | false |
barryvdh/laravel-debugbar | https://github.com/barryvdh/laravel-debugbar/blob/7e9719db094762f08f998521dcc048321d936bcb/src/DataCollector/CacheCollector.php | src/DataCollector/CacheCollector.php | <?php
declare(strict_types=1);
namespace Barryvdh\Debugbar\DataCollector;
use DebugBar\DataCollector\AssetProvider;
use DebugBar\DataCollector\TimeDataCollector;
use DebugBar\DataFormatter\HasDataFormatter;
use Illuminate\Cache\Events\{
CacheFlushed,
CacheFlushFailed,
CacheFlushing,
CacheHit,
Cac... | php | MIT | 7e9719db094762f08f998521dcc048321d936bcb | 2026-01-04T15:02:34.390506Z | false |
barryvdh/laravel-debugbar | https://github.com/barryvdh/laravel-debugbar/blob/7e9719db094762f08f998521dcc048321d936bcb/src/Facades/Debugbar.php | src/Facades/Debugbar.php | <?php
declare(strict_types=1);
namespace Barryvdh\Debugbar\Facades;
use Barryvdh\Debugbar\LaravelDebugbar;
use DebugBar\DataCollector\DataCollectorInterface;
/**
* @method static LaravelDebugbar addCollector(DataCollectorInterface $collector)
* @method static void addMessage(mixed $message, string $lab... | php | MIT | 7e9719db094762f08f998521dcc048321d936bcb | 2026-01-04T15:02:34.390506Z | false |
barryvdh/laravel-debugbar | https://github.com/barryvdh/laravel-debugbar/blob/7e9719db094762f08f998521dcc048321d936bcb/src/Console/ClearCommand.php | src/Console/ClearCommand.php | <?php
declare(strict_types=1);
namespace Barryvdh\Debugbar\Console;
use DebugBar\DebugBar;
use Illuminate\Console\Command;
class ClearCommand extends Command
{
protected $name = 'debugbar:clear';
protected $description = 'Clear the Debugbar Storage';
protected $debugbar;
public function __construct... | php | MIT | 7e9719db094762f08f998521dcc048321d936bcb | 2026-01-04T15:02:34.390506Z | false |
barryvdh/laravel-debugbar | https://github.com/barryvdh/laravel-debugbar/blob/7e9719db094762f08f998521dcc048321d936bcb/src/Middleware/InjectDebugbar.php | src/Middleware/InjectDebugbar.php | <?php
declare(strict_types=1);
namespace Barryvdh\Debugbar\Middleware;
use Closure;
use Exception;
use Illuminate\Http\Request;
use Barryvdh\Debugbar\LaravelDebugbar;
use Illuminate\Contracts\Container\Container;
use Illuminate\Contracts\Debug\ExceptionHandler;
use Throwable;
class InjectDebugbar
{
/**
* T... | php | MIT | 7e9719db094762f08f998521dcc048321d936bcb | 2026-01-04T15:02:34.390506Z | false |
barryvdh/laravel-debugbar | https://github.com/barryvdh/laravel-debugbar/blob/7e9719db094762f08f998521dcc048321d936bcb/src/Middleware/DebugbarEnabled.php | src/Middleware/DebugbarEnabled.php | <?php
declare(strict_types=1);
namespace Barryvdh\Debugbar\Middleware;
use Closure;
use Illuminate\Http\Request;
use Barryvdh\Debugbar\LaravelDebugbar;
class DebugbarEnabled
{
/**
* The DebugBar instance
*
* @var LaravelDebugbar
*/
protected $debugbar;
/**
* Create a new middle... | php | MIT | 7e9719db094762f08f998521dcc048321d936bcb | 2026-01-04T15:02:34.390506Z | false |
barryvdh/laravel-debugbar | https://github.com/barryvdh/laravel-debugbar/blob/7e9719db094762f08f998521dcc048321d936bcb/tests/DebugbarTest.php | tests/DebugbarTest.php | <?php
declare(strict_types=1);
namespace Barryvdh\Debugbar\Tests;
use Barryvdh\Debugbar\LaravelDebugbar;
use Illuminate\Support\Str;
class DebugbarTest extends TestCase
{
/**
* Define environment setup.
*
* @param \Illuminate\Foundation\Application $app
*
* @return void
*/
prot... | php | MIT | 7e9719db094762f08f998521dcc048321d936bcb | 2026-01-04T15:02:34.390506Z | false |
barryvdh/laravel-debugbar | https://github.com/barryvdh/laravel-debugbar/blob/7e9719db094762f08f998521dcc048321d936bcb/tests/ErrorHandlerTest.php | tests/ErrorHandlerTest.php | <?php
declare(strict_types=1);
namespace Barryvdh\Debugbar\Tests;
use Barryvdh\Debugbar\LaravelDebugbar;
use ReflectionObject;
class ErrorHandlerTest extends TestCase
{
/**
* Define environment setup.
*
* @param \Illuminate\Foundation\Application $app
*
* @return void
*/
protec... | php | MIT | 7e9719db094762f08f998521dcc048321d936bcb | 2026-01-04T15:02:34.390506Z | false |
barryvdh/laravel-debugbar | https://github.com/barryvdh/laravel-debugbar/blob/7e9719db094762f08f998521dcc048321d936bcb/tests/TestCase.php | tests/TestCase.php | <?php
declare(strict_types=1);
namespace Barryvdh\Debugbar\Tests;
use Barryvdh\Debugbar\Facades\Debugbar;
use Barryvdh\Debugbar\ServiceProvider;
use Illuminate\Routing\Router;
use Orchestra\Testbench\TestCase as Orchestra;
use Barryvdh\Debugbar\Tests\Mocks\MockController;
use Barryvdh\Debugbar\Tests\Mocks\MockViewCo... | php | MIT | 7e9719db094762f08f998521dcc048321d936bcb | 2026-01-04T15:02:34.390506Z | false |
barryvdh/laravel-debugbar | https://github.com/barryvdh/laravel-debugbar/blob/7e9719db094762f08f998521dcc048321d936bcb/tests/DebugbarBrowserTest.php | tests/DebugbarBrowserTest.php | <?php
declare(strict_types=1);
namespace Barryvdh\Debugbar\Tests;
use Illuminate\Routing\Router;
use Laravel\Dusk\Browser;
use Illuminate\Database\Events\QueryExecuted;
use Illuminate\Database\Connection;
class DebugbarBrowserTest extends BrowserTestCase
{
/**
* Define environment setup.
*
* @par... | php | MIT | 7e9719db094762f08f998521dcc048321d936bcb | 2026-01-04T15:02:34.390506Z | false |
barryvdh/laravel-debugbar | https://github.com/barryvdh/laravel-debugbar/blob/7e9719db094762f08f998521dcc048321d936bcb/tests/BrowserTestCase.php | tests/BrowserTestCase.php | <?php
declare(strict_types=1);
namespace Barryvdh\Debugbar\Tests;
use Barryvdh\Debugbar\Facades\Debugbar;
use Barryvdh\Debugbar\ServiceProvider;
class BrowserTestCase extends \Orchestra\Testbench\Dusk\TestCase
{
protected static $baseServeHost = '127.0.0.1';
protected static $baseServePort = 9292;
/**
... | php | MIT | 7e9719db094762f08f998521dcc048321d936bcb | 2026-01-04T15:02:34.390506Z | false |
barryvdh/laravel-debugbar | https://github.com/barryvdh/laravel-debugbar/blob/7e9719db094762f08f998521dcc048321d936bcb/tests/Jobs/OrderShipped.php | tests/Jobs/OrderShipped.php | <?php
declare(strict_types=1);
namespace Barryvdh\Debugbar\Tests\Jobs;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
class OrderShipped implements ShouldQueue
{
use Dispatchable;
private $orderId;
public function __construct($orderId)
{
$this->orde... | php | MIT | 7e9719db094762f08f998521dcc048321d936bcb | 2026-01-04T15:02:34.390506Z | false |
barryvdh/laravel-debugbar | https://github.com/barryvdh/laravel-debugbar/blob/7e9719db094762f08f998521dcc048321d936bcb/tests/Jobs/SendNotification.php | tests/Jobs/SendNotification.php | <?php
declare(strict_types=1);
namespace Barryvdh\Debugbar\Tests\Jobs;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
class SendNotification implements ShouldQueue
{
use Dispatchable;
public function handle()
{
// Do Nothing
}
}
| php | MIT | 7e9719db094762f08f998521dcc048321d936bcb | 2026-01-04T15:02:34.390506Z | false |
barryvdh/laravel-debugbar | https://github.com/barryvdh/laravel-debugbar/blob/7e9719db094762f08f998521dcc048321d936bcb/tests/Mocks/MockViewComponent.php | tests/Mocks/MockViewComponent.php | <?php
declare(strict_types=1);
namespace Barryvdh\Debugbar\Tests\Mocks;
use Illuminate\View\InvokableComponentVariable;
class MockViewComponent extends InvokableComponentVariable
{
public function render()
{
return view('dashboard');
}
}
| php | MIT | 7e9719db094762f08f998521dcc048321d936bcb | 2026-01-04T15:02:34.390506Z | false |
barryvdh/laravel-debugbar | https://github.com/barryvdh/laravel-debugbar/blob/7e9719db094762f08f998521dcc048321d936bcb/tests/Mocks/MockMiddleware.php | tests/Mocks/MockMiddleware.php | <?php
declare(strict_types=1);
namespace Barryvdh\Debugbar\Tests\Mocks;
use Closure;
class MockMiddleware
{
public function handle($request, Closure $next)
{
return $next($request);
}
}
| php | MIT | 7e9719db094762f08f998521dcc048321d936bcb | 2026-01-04T15:02:34.390506Z | false |
barryvdh/laravel-debugbar | https://github.com/barryvdh/laravel-debugbar/blob/7e9719db094762f08f998521dcc048321d936bcb/tests/Mocks/MockController.php | tests/Mocks/MockController.php | <?php
declare(strict_types=1);
namespace Barryvdh\Debugbar\Tests\Mocks;
use Illuminate\Routing\Controller;
class MockController extends Controller
{
public function show()
{
return view('dashboard');
}
}
| php | MIT | 7e9719db094762f08f998521dcc048321d936bcb | 2026-01-04T15:02:34.390506Z | false |
barryvdh/laravel-debugbar | https://github.com/barryvdh/laravel-debugbar/blob/7e9719db094762f08f998521dcc048321d936bcb/tests/DataFormatter/QueryFormatterTest.php | tests/DataFormatter/QueryFormatterTest.php | <?php
declare(strict_types=1);
namespace Barryvdh\Debugbar\Tests\DataFormatter;
use DebugBar\DataFormatter\QueryFormatter;
use Barryvdh\Debugbar\Tests\TestCase;
class QueryFormatterTest extends TestCase
{
public function testItFormatsArrayBindings()
{
$bindings = [
'some string',
... | php | MIT | 7e9719db094762f08f998521dcc048321d936bcb | 2026-01-04T15:02:34.390506Z | false |
barryvdh/laravel-debugbar | https://github.com/barryvdh/laravel-debugbar/blob/7e9719db094762f08f998521dcc048321d936bcb/tests/DataCollector/GateCollectorTest.php | tests/DataCollector/GateCollectorTest.php | <?php
declare(strict_types=1);
namespace Barryvdh\Debugbar\Tests\DataCollector;
use Barryvdh\Debugbar\Tests\Models\User;
use Barryvdh\Debugbar\Tests\TestCase;
use Illuminate\Support\Facades\Gate;
class GateCollectorTest extends TestCase
{
public function testItCollectsGateChecks()
{
debugbar()->boot... | php | MIT | 7e9719db094762f08f998521dcc048321d936bcb | 2026-01-04T15:02:34.390506Z | false |
barryvdh/laravel-debugbar | https://github.com/barryvdh/laravel-debugbar/blob/7e9719db094762f08f998521dcc048321d936bcb/tests/DataCollector/ModelsCollectorTest.php | tests/DataCollector/ModelsCollectorTest.php | <?php
declare(strict_types=1);
namespace Barryvdh\Debugbar\Tests\DataCollector;
use Barryvdh\Debugbar\Tests\Models\Person;
use Barryvdh\Debugbar\Tests\Models\User;
use Barryvdh\Debugbar\Tests\TestCase;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Illuminate\Support\Facades\Hash;
class ModelsCollectorTest ... | php | MIT | 7e9719db094762f08f998521dcc048321d936bcb | 2026-01-04T15:02:34.390506Z | false |
barryvdh/laravel-debugbar | https://github.com/barryvdh/laravel-debugbar/blob/7e9719db094762f08f998521dcc048321d936bcb/tests/DataCollector/SessionCollectorTest.php | tests/DataCollector/SessionCollectorTest.php | <?php
declare(strict_types=1);
namespace Barryvdh\Debugbar\Tests\DataCollector;
use Barryvdh\Debugbar\Tests\TestCase;
use Barryvdh\Debugbar\DataCollector\SessionCollector;
use Illuminate\Session\SymfonySessionDecorator;
class SessionCollectorTest extends TestCase
{
protected function getEnvironmentSetUp($app)
... | php | MIT | 7e9719db094762f08f998521dcc048321d936bcb | 2026-01-04T15:02:34.390506Z | false |
barryvdh/laravel-debugbar | https://github.com/barryvdh/laravel-debugbar/blob/7e9719db094762f08f998521dcc048321d936bcb/tests/DataCollector/QueryCollectorRuntimeDatabaseTest.php | tests/DataCollector/QueryCollectorRuntimeDatabaseTest.php | <?php
declare(strict_types=1);
namespace Barryvdh\Debugbar\Tests\DataCollector;
use Barryvdh\Debugbar\Tests\TestCase;
use Illuminate\Database\Connection;
class QueryCollectorRuntimeDatabaseTest extends TestCase
{
protected function getEnvironmentSetUp($app)
{
$app['config']->set('database.default', ... | php | MIT | 7e9719db094762f08f998521dcc048321d936bcb | 2026-01-04T15:02:34.390506Z | false |
barryvdh/laravel-debugbar | https://github.com/barryvdh/laravel-debugbar/blob/7e9719db094762f08f998521dcc048321d936bcb/tests/DataCollector/ViewCollectorTest.php | tests/DataCollector/ViewCollectorTest.php | <?php
declare(strict_types=1);
namespace Barryvdh\Debugbar\Tests\DataCollector;
use Barryvdh\Debugbar\Tests\TestCase;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Illuminate\Support\Arr;
class ViewCollectorTest extends TestCase
{
use RefreshDatabase;
public function testIdeLinksAreAbsolutePaths()... | php | MIT | 7e9719db094762f08f998521dcc048321d936bcb | 2026-01-04T15:02:34.390506Z | false |
barryvdh/laravel-debugbar | https://github.com/barryvdh/laravel-debugbar/blob/7e9719db094762f08f998521dcc048321d936bcb/tests/DataCollector/JobsCollectorTest.php | tests/DataCollector/JobsCollectorTest.php | <?php
declare(strict_types=1);
namespace Barryvdh\Debugbar\Tests\DataCollector;
use Barryvdh\Debugbar\Tests\Jobs\OrderShipped;
use Barryvdh\Debugbar\Tests\Jobs\SendNotification;
use Barryvdh\Debugbar\Tests\TestCase;
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminat... | php | MIT | 7e9719db094762f08f998521dcc048321d936bcb | 2026-01-04T15:02:34.390506Z | false |
barryvdh/laravel-debugbar | https://github.com/barryvdh/laravel-debugbar/blob/7e9719db094762f08f998521dcc048321d936bcb/tests/DataCollector/RouteCollectorTest.php | tests/DataCollector/RouteCollectorTest.php | <?php
declare(strict_types=1);
namespace Barryvdh\Debugbar\Tests\DataCollector;
use Barryvdh\Debugbar\Tests\TestCase;
use DebugBar\DataCollector\DataCollector;
class RouteCollectorTest extends TestCase
{
/** @var \Barryvdh\Debugbar\DataCollector\RouteCollector $collector */
private DataCollector $routeColle... | php | MIT | 7e9719db094762f08f998521dcc048321d936bcb | 2026-01-04T15:02:34.390506Z | false |
barryvdh/laravel-debugbar | https://github.com/barryvdh/laravel-debugbar/blob/7e9719db094762f08f998521dcc048321d936bcb/tests/DataCollector/QueryCollectorTest.php | tests/DataCollector/QueryCollectorTest.php | <?php
declare(strict_types=1);
namespace Barryvdh\Debugbar\Tests\DataCollector;
use Barryvdh\Debugbar\Tests\TestCase;
use Illuminate\Database\Events\QueryExecuted;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Illuminate\Support\Arr;
class QueryCollectorTest extends TestCase
{
use RefreshDatabase;
... | php | MIT | 7e9719db094762f08f998521dcc048321d936bcb | 2026-01-04T15:02:34.390506Z | false |
barryvdh/laravel-debugbar | https://github.com/barryvdh/laravel-debugbar/blob/7e9719db094762f08f998521dcc048321d936bcb/tests/Models/User.php | tests/Models/User.php | <?php
declare(strict_types=1);
namespace Barryvdh\Debugbar\Tests\Models;
use Illuminate\Foundation\Auth\User as Model;
class User extends Model
{
protected $table = 'users';
protected $guarded = [];
}
| php | MIT | 7e9719db094762f08f998521dcc048321d936bcb | 2026-01-04T15:02:34.390506Z | false |
barryvdh/laravel-debugbar | https://github.com/barryvdh/laravel-debugbar/blob/7e9719db094762f08f998521dcc048321d936bcb/tests/Models/Person.php | tests/Models/Person.php | <?php
declare(strict_types=1);
namespace Barryvdh\Debugbar\Tests\Models;
class Person extends User {}
| php | MIT | 7e9719db094762f08f998521dcc048321d936bcb | 2026-01-04T15:02:34.390506Z | false |
barryvdh/laravel-debugbar | https://github.com/barryvdh/laravel-debugbar/blob/7e9719db094762f08f998521dcc048321d936bcb/tests/resources/views/query.blade.php | tests/resources/views/query.blade.php | @php
$collector->addQuery(new \Illuminate\Database\Events\QueryExecuted(
"SELECT a FROM b WHERE c = ? AND d = ? AND e = ?",
['$10', '$2y$10_DUMMY_BCRYPT_HASH', '$_$$_$$$_$2_$3'],
0,
$db
));
@endphp
| php | MIT | 7e9719db094762f08f998521dcc048321d936bcb | 2026-01-04T15:02:34.390506Z | false |
barryvdh/laravel-debugbar | https://github.com/barryvdh/laravel-debugbar/blob/7e9719db094762f08f998521dcc048321d936bcb/tests/resources/views/ajax.blade.php | tests/resources/views/ajax.blade.php | <html>
<body>
<a href="#" id="ajax-link" onclick="loadAjax();return false;">Click me</a>
<div id="result">Waiting..</div>
<script>
async function loadAjax() {
try {
const response = await fetch('/api/ping');
if (!response.ok) {
throw new Error(`Response status: ${re... | php | MIT | 7e9719db094762f08f998521dcc048321d936bcb | 2026-01-04T15:02:34.390506Z | false |
barryvdh/laravel-debugbar | https://github.com/barryvdh/laravel-debugbar/blob/7e9719db094762f08f998521dcc048321d936bcb/tests/resources/views/dashboard.blade.php | tests/resources/views/dashboard.blade.php | <div>
<p>Basic view</p>
</div>
| php | MIT | 7e9719db094762f08f998521dcc048321d936bcb | 2026-01-04T15:02:34.390506Z | false |
barryvdh/laravel-debugbar | https://github.com/barryvdh/laravel-debugbar/blob/7e9719db094762f08f998521dcc048321d936bcb/tests/resources/views/custom-prototype.blade.php | tests/resources/views/custom-prototype.blade.php | <html>
<body>
<script>
Array.prototype.customRemove = function(item) {
const i = this.indexOf(item)
if (i > -1) {
this.splice(i, 1)
}
return this
}
</script>
</body>
| php | MIT | 7e9719db094762f08f998521dcc048321d936bcb | 2026-01-04T15:02:34.390506Z | false |
barryvdh/laravel-debugbar | https://github.com/barryvdh/laravel-debugbar/blob/7e9719db094762f08f998521dcc048321d936bcb/config/debugbar.php | config/debugbar.php | <?php
declare(strict_types=1);
return [
/*
|--------------------------------------------------------------------------
| Debugbar Settings
|--------------------------------------------------------------------------
|
| Debugbar is enabled by default, when debug is set to true in app.php.... | php | MIT | 7e9719db094762f08f998521dcc048321d936bcb | 2026-01-04T15:02:34.390506Z | false |
barryvdh/laravel-debugbar | https://github.com/barryvdh/laravel-debugbar/blob/7e9719db094762f08f998521dcc048321d936bcb/database/migrations/2014_12_01_120000_create_phpdebugbar_storage_table.php | database/migrations/2014_12_01_120000_create_phpdebugbar_storage_table.php | <?php
declare(strict_types=1);
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration {
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('phpdebugbar', func... | php | MIT | 7e9719db094762f08f998521dcc048321d936bcb | 2026-01-04T15:02:34.390506Z | false |
PHP-CS-Fixer/PHP-CS-Fixer | https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/63b024eaaf8a48445494964bd21a6c38c788f40f/.php-cs-fixer.php-lowest.php | .php-cs-fixer.php-lowest.php | <?php
declare(strict_types=1);
/*
* This file is part of PHP CS Fixer.
*
* (c) Fabien Potencier <fabien@symfony.com>
* Dariusz Rumiński <dariusz.ruminski@gmail.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
use PhpCsFixer\Config;
us... | php | MIT | 63b024eaaf8a48445494964bd21a6c38c788f40f | 2026-01-04T15:02:54.911792Z | false |
PHP-CS-Fixer/PHP-CS-Fixer | https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/63b024eaaf8a48445494964bd21a6c38c788f40f/composer-dependency-analyser.php | composer-dependency-analyser.php | <?php
declare(strict_types=1);
/*
* This file is part of PHP CS Fixer.
*
* (c) Fabien Potencier <fabien@symfony.com>
* Dariusz Rumiński <dariusz.ruminski@gmail.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
use ShipMonk\ComposerDepe... | php | MIT | 63b024eaaf8a48445494964bd21a6c38c788f40f | 2026-01-04T15:02:54.911792Z | false |
PHP-CS-Fixer/PHP-CS-Fixer | https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/63b024eaaf8a48445494964bd21a6c38c788f40f/.php-cs-fixer.php-highest.php | .php-cs-fixer.php-highest.php | <?php
declare(strict_types=1);
/*
* This file is part of PHP CS Fixer.
*
* (c) Fabien Potencier <fabien@symfony.com>
* Dariusz Rumiński <dariusz.ruminski@gmail.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
use PhpCsFixer\Config;
us... | php | MIT | 63b024eaaf8a48445494964bd21a6c38c788f40f | 2026-01-04T15:02:54.911792Z | false |
PHP-CS-Fixer/PHP-CS-Fixer | https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/63b024eaaf8a48445494964bd21a6c38c788f40f/.php-cs-fixer.dist.php | .php-cs-fixer.dist.php | <?php
declare(strict_types=1);
/*
* This file is part of PHP CS Fixer.
*
* (c) Fabien Potencier <fabien@symfony.com>
* Dariusz Rumiński <dariusz.ruminski@gmail.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
use PhpCsFixer\Config;
us... | php | MIT | 63b024eaaf8a48445494964bd21a6c38c788f40f | 2026-01-04T15:02:54.911792Z | false |
PHP-CS-Fixer/PHP-CS-Fixer | https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/63b024eaaf8a48445494964bd21a6c38c788f40f/dev-tools/.php-cs-fixer.well-defined-arrays.php | dev-tools/.php-cs-fixer.well-defined-arrays.php | <?php
declare(strict_types=1);
/*
* This file is part of PHP CS Fixer.
*
* (c) Fabien Potencier <fabien@symfony.com>
* Dariusz Rumiński <dariusz.ruminski@gmail.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
$config = require __DIR__... | php | MIT | 63b024eaaf8a48445494964bd21a6c38c788f40f | 2026-01-04T15:02:54.911792Z | false |
PHP-CS-Fixer/PHP-CS-Fixer | https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/63b024eaaf8a48445494964bd21a6c38c788f40f/dev-tools/info-extractor.php | dev-tools/info-extractor.php | #!/usr/bin/env php
<?php
declare(strict_types=1);
/*
* This file is part of PHP CS Fixer.
*
* (c) Fabien Potencier <fabien@symfony.com>
* Dariusz Rumiński <dariusz.ruminski@gmail.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
use Ph... | php | MIT | 63b024eaaf8a48445494964bd21a6c38c788f40f | 2026-01-04T15:02:54.911792Z | false |
PHP-CS-Fixer/PHP-CS-Fixer | https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/63b024eaaf8a48445494964bd21a6c38c788f40f/dev-tools/phpstan/console-application.php | dev-tools/phpstan/console-application.php | <?php
declare(strict_types=1);
/*
* This file is part of PHP CS Fixer.
*
* (c) Fabien Potencier <fabien@symfony.com>
* Dariusz Rumiński <dariusz.ruminski@gmail.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
use PhpCsFixer\Console\Ap... | php | MIT | 63b024eaaf8a48445494964bd21a6c38c788f40f | 2026-01-04T15:02:54.911792Z | false |
PHP-CS-Fixer/PHP-CS-Fixer | https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/63b024eaaf8a48445494964bd21a6c38c788f40f/dev-tools/phpstan/src/Extension/PregMatchParameterOutExtension.php | dev-tools/phpstan/src/Extension/PregMatchParameterOutExtension.php | <?php
declare(strict_types=1);
/*
* This file is part of PHP CS Fixer.
*
* (c) Fabien Potencier <fabien@symfony.com>
* Dariusz Rumiński <dariusz.ruminski@gmail.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace PhpCsFixer\PHPS... | php | MIT | 63b024eaaf8a48445494964bd21a6c38c788f40f | 2026-01-04T15:02:54.911792Z | false |
PHP-CS-Fixer/PHP-CS-Fixer | https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/63b024eaaf8a48445494964bd21a6c38c788f40f/dev-tools/phpstan/src/Extension/PregMatchTypeSpecifyingExtension.php | dev-tools/phpstan/src/Extension/PregMatchTypeSpecifyingExtension.php | <?php
declare(strict_types=1);
/*
* This file is part of PHP CS Fixer.
*
* (c) Fabien Potencier <fabien@symfony.com>
* Dariusz Rumiński <dariusz.ruminski@gmail.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace PhpCsFixer\PHPS... | php | MIT | 63b024eaaf8a48445494964bd21a6c38c788f40f | 2026-01-04T15:02:54.911792Z | false |
PHP-CS-Fixer/PHP-CS-Fixer | https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/63b024eaaf8a48445494964bd21a6c38c788f40f/dev-tools/phpstan/src/Rules/NoInternalTypesInPublicApiRule.php | dev-tools/phpstan/src/Rules/NoInternalTypesInPublicApiRule.php | <?php
declare(strict_types=1);
/*
* This file is part of PHP CS Fixer.
*
* (c) Fabien Potencier <fabien@symfony.com>
* Dariusz Rumiński <dariusz.ruminski@gmail.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace PhpCsFixer\PHPS... | php | MIT | 63b024eaaf8a48445494964bd21a6c38c788f40f | 2026-01-04T15:02:54.911792Z | false |
PHP-CS-Fixer/PHP-CS-Fixer | https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/63b024eaaf8a48445494964bd21a6c38c788f40f/dev-tools/phpstan/baseline/variable.undefined.php | dev-tools/phpstan/baseline/variable.undefined.php | <?php declare(strict_types = 1);
$ignoreErrors = [];
$ignoreErrors[] = [
'rawMessage' => 'Variable $innerValues might not be defined.',
'count' => 1,
'path' => __DIR__ . '/../../../src/DocBlock/TypeExpression.php',
];
return ['parameters' => ['ignoreErrors' => $ignoreErrors]];
| php | MIT | 63b024eaaf8a48445494964bd21a6c38c788f40f | 2026-01-04T15:02:54.911792Z | false |
PHP-CS-Fixer/PHP-CS-Fixer | https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/63b024eaaf8a48445494964bd21a6c38c788f40f/dev-tools/phpstan/baseline/offsetAccess.notFound.php | dev-tools/phpstan/baseline/offsetAccess.notFound.php | <?php declare(strict_types = 1);
$ignoreErrors = [];
$ignoreErrors[] = [
'rawMessage' => 'Offset 1 might not exist on list<int>.',
'count' => 1,
'path' => __DIR__ . '/../../../src/AbstractFopenFlagFixer.php',
];
$ignoreErrors[] = [
'rawMessage' => 'Offset int might not exist on array<int, int>.',
'... | php | MIT | 63b024eaaf8a48445494964bd21a6c38c788f40f | 2026-01-04T15:02:54.911792Z | true |
PHP-CS-Fixer/PHP-CS-Fixer | https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/63b024eaaf8a48445494964bd21a6c38c788f40f/dev-tools/phpstan/baseline/argument.type.php | dev-tools/phpstan/baseline/argument.type.php | <?php declare(strict_types = 1);
$ignoreErrors = [];
$ignoreErrors[] = [
'rawMessage' => 'Parameter #2 of function sprintf is expected to be int by placeholder #1 ("%%d"), string given.',
'count' => 1,
'path' => __DIR__ . '/../../../src/Console/Command/WorkerCommand.php',
];
$ignoreErrors[] = [
'rawMes... | php | MIT | 63b024eaaf8a48445494964bd21a6c38c788f40f | 2026-01-04T15:02:54.911792Z | false |
PHP-CS-Fixer/PHP-CS-Fixer | https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/63b024eaaf8a48445494964bd21a6c38c788f40f/dev-tools/phpstan/baseline/return.type.php | dev-tools/phpstan/baseline/return.type.php | <?php declare(strict_types = 1);
$ignoreErrors = [];
$ignoreErrors[] = [
'rawMessage' => 'Method PhpCsFixer\\Fixer\\ClassNotation\\NoPhp4ConstructorFixer::findFunction() should return array{nameIndex: int, startIndex: int, endIndex: int, bodyIndex: int, modifiers: list<int>}|null but returns array{nameIndex: int<0... | php | MIT | 63b024eaaf8a48445494964bd21a6c38c788f40f | 2026-01-04T15:02:54.911792Z | false |
PHP-CS-Fixer/PHP-CS-Fixer | https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/63b024eaaf8a48445494964bd21a6c38c788f40f/dev-tools/phpstan/baseline/assign.propertyType.php | dev-tools/phpstan/baseline/assign.propertyType.php | <?php declare(strict_types = 1);
$ignoreErrors = [];
$ignoreErrors[] = [
'rawMessage' => 'Property PhpCsFixer\\FixerConfiguration\\FixerOption::$allowedValues (non-empty-list<bool|(callable(mixed): bool)|float|int|string|null>|null) does not accept non-empty-array<int<0, max>, bool|(callable(mixed): bool)|Closure|... | php | MIT | 63b024eaaf8a48445494964bd21a6c38c788f40f | 2026-01-04T15:02:54.911792Z | false |
PHP-CS-Fixer/PHP-CS-Fixer | https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/63b024eaaf8a48445494964bd21a6c38c788f40f/dev-tools/phpstan/baseline/_loader.php | dev-tools/phpstan/baseline/_loader.php | <?php declare(strict_types = 1);
return ['includes' => [
__DIR__ . '/argument.type.php',
__DIR__ . '/assign.propertyType.php',
__DIR__ . '/offsetAccess.notFound.php',
__DIR__ . '/return.type.php',
__DIR__ . '/variable.undefined.php',
]];
| php | MIT | 63b024eaaf8a48445494964bd21a6c38c788f40f | 2026-01-04T15:02:54.911792Z | false |
PHP-CS-Fixer/PHP-CS-Fixer | https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/63b024eaaf8a48445494964bd21a6c38c788f40f/src/ExecutorWithoutErrorHandler.php | src/ExecutorWithoutErrorHandler.php | <?php
declare(strict_types=1);
/*
* This file is part of PHP CS Fixer.
*
* (c) Fabien Potencier <fabien@symfony.com>
* Dariusz Rumiński <dariusz.ruminski@gmail.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace PhpCsFixer;
/*... | php | MIT | 63b024eaaf8a48445494964bd21a6c38c788f40f | 2026-01-04T15:02:54.911792Z | false |
PHP-CS-Fixer/PHP-CS-Fixer | https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/63b024eaaf8a48445494964bd21a6c38c788f40f/src/PharChecker.php | src/PharChecker.php | <?php
declare(strict_types=1);
/*
* This file is part of PHP CS Fixer.
*
* (c) Fabien Potencier <fabien@symfony.com>
* Dariusz Rumiński <dariusz.ruminski@gmail.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace PhpCsFixer;
/*... | php | MIT | 63b024eaaf8a48445494964bd21a6c38c788f40f | 2026-01-04T15:02:54.911792Z | false |
PHP-CS-Fixer/PHP-CS-Fixer | https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/63b024eaaf8a48445494964bd21a6c38c788f40f/src/FixerNameValidator.php | src/FixerNameValidator.php | <?php
declare(strict_types=1);
/*
* This file is part of PHP CS Fixer.
*
* (c) Fabien Potencier <fabien@symfony.com>
* Dariusz Rumiński <dariusz.ruminski@gmail.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace PhpCsFixer;
/*... | php | MIT | 63b024eaaf8a48445494964bd21a6c38c788f40f | 2026-01-04T15:02:54.911792Z | false |
PHP-CS-Fixer/PHP-CS-Fixer | https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/63b024eaaf8a48445494964bd21a6c38c788f40f/src/WordMatcher.php | src/WordMatcher.php | <?php
declare(strict_types=1);
/*
* This file is part of PHP CS Fixer.
*
* (c) Fabien Potencier <fabien@symfony.com>
* Dariusz Rumiński <dariusz.ruminski@gmail.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace PhpCsFixer;
/*... | php | MIT | 63b024eaaf8a48445494964bd21a6c38c788f40f | 2026-01-04T15:02:54.911792Z | false |
PHP-CS-Fixer/PHP-CS-Fixer | https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/63b024eaaf8a48445494964bd21a6c38c788f40f/src/ParallelAwareConfigInterface.php | src/ParallelAwareConfigInterface.php | <?php
declare(strict_types=1);
/*
* This file is part of PHP CS Fixer.
*
* (c) Fabien Potencier <fabien@symfony.com>
* Dariusz Rumiński <dariusz.ruminski@gmail.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace PhpCsFixer;
us... | php | MIT | 63b024eaaf8a48445494964bd21a6c38c788f40f | 2026-01-04T15:02:54.911792Z | false |
PHP-CS-Fixer/PHP-CS-Fixer | https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/63b024eaaf8a48445494964bd21a6c38c788f40f/src/ComposerJsonReader.php | src/ComposerJsonReader.php | <?php
declare(strict_types=1);
/*
* This file is part of PHP CS Fixer.
*
* (c) Fabien Potencier <fabien@symfony.com>
* Dariusz Rumiński <dariusz.ruminski@gmail.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace PhpCsFixer;
us... | php | MIT | 63b024eaaf8a48445494964bd21a6c38c788f40f | 2026-01-04T15:02:54.911792Z | false |
PHP-CS-Fixer/PHP-CS-Fixer | https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/63b024eaaf8a48445494964bd21a6c38c788f40f/src/WhitespacesFixerConfig.php | src/WhitespacesFixerConfig.php | <?php
declare(strict_types=1);
/*
* This file is part of PHP CS Fixer.
*
* (c) Fabien Potencier <fabien@symfony.com>
* Dariusz Rumiński <dariusz.ruminski@gmail.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace PhpCsFixer;
/*... | php | MIT | 63b024eaaf8a48445494964bd21a6c38c788f40f | 2026-01-04T15:02:54.911792Z | false |
PHP-CS-Fixer/PHP-CS-Fixer | https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/63b024eaaf8a48445494964bd21a6c38c788f40f/src/CustomRulesetsAwareConfigInterface.php | src/CustomRulesetsAwareConfigInterface.php | <?php
declare(strict_types=1);
/*
* This file is part of PHP CS Fixer.
*
* (c) Fabien Potencier <fabien@symfony.com>
* Dariusz Rumiński <dariusz.ruminski@gmail.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace PhpCsFixer;
us... | php | MIT | 63b024eaaf8a48445494964bd21a6c38c788f40f | 2026-01-04T15:02:54.911792Z | false |
PHP-CS-Fixer/PHP-CS-Fixer | https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/63b024eaaf8a48445494964bd21a6c38c788f40f/src/ToolInfoInterface.php | src/ToolInfoInterface.php | <?php
declare(strict_types=1);
/*
* This file is part of PHP CS Fixer.
*
* (c) Fabien Potencier <fabien@symfony.com>
* Dariusz Rumiński <dariusz.ruminski@gmail.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace PhpCsFixer;
/*... | php | MIT | 63b024eaaf8a48445494964bd21a6c38c788f40f | 2026-01-04T15:02:54.911792Z | false |
PHP-CS-Fixer/PHP-CS-Fixer | https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/63b024eaaf8a48445494964bd21a6c38c788f40f/src/RuleSetNameValidator.php | src/RuleSetNameValidator.php | <?php
declare(strict_types=1);
/*
* This file is part of PHP CS Fixer.
*
* (c) Fabien Potencier <fabien@symfony.com>
* Dariusz Rumiński <dariusz.ruminski@gmail.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace PhpCsFixer;
/*... | php | MIT | 63b024eaaf8a48445494964bd21a6c38c788f40f | 2026-01-04T15:02:54.911792Z | false |
PHP-CS-Fixer/PHP-CS-Fixer | https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/63b024eaaf8a48445494964bd21a6c38c788f40f/src/AbstractDoctrineAnnotationFixer.php | src/AbstractDoctrineAnnotationFixer.php | <?php
declare(strict_types=1);
/*
* This file is part of PHP CS Fixer.
*
* (c) Fabien Potencier <fabien@symfony.com>
* Dariusz Rumiński <dariusz.ruminski@gmail.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace PhpCsFixer;
us... | php | MIT | 63b024eaaf8a48445494964bd21a6c38c788f40f | 2026-01-04T15:02:54.911792Z | false |
PHP-CS-Fixer/PHP-CS-Fixer | https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/63b024eaaf8a48445494964bd21a6c38c788f40f/src/StdinFileInfo.php | src/StdinFileInfo.php | <?php
declare(strict_types=1);
/*
* This file is part of PHP CS Fixer.
*
* (c) Fabien Potencier <fabien@symfony.com>
* Dariusz Rumiński <dariusz.ruminski@gmail.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace PhpCsFixer;
/*... | php | MIT | 63b024eaaf8a48445494964bd21a6c38c788f40f | 2026-01-04T15:02:54.911792Z | false |
PHP-CS-Fixer/PHP-CS-Fixer | https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/63b024eaaf8a48445494964bd21a6c38c788f40f/src/FixerFactory.php | src/FixerFactory.php | <?php
declare(strict_types=1);
/*
* This file is part of PHP CS Fixer.
*
* (c) Fabien Potencier <fabien@symfony.com>
* Dariusz Rumiński <dariusz.ruminski@gmail.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace PhpCsFixer;
us... | php | MIT | 63b024eaaf8a48445494964bd21a6c38c788f40f | 2026-01-04T15:02:54.911792Z | false |
PHP-CS-Fixer/PHP-CS-Fixer | https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/63b024eaaf8a48445494964bd21a6c38c788f40f/src/AbstractPhpdocTypesFixer.php | src/AbstractPhpdocTypesFixer.php | <?php
declare(strict_types=1);
/*
* This file is part of PHP CS Fixer.
*
* (c) Fabien Potencier <fabien@symfony.com>
* Dariusz Rumiński <dariusz.ruminski@gmail.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace PhpCsFixer;
us... | php | MIT | 63b024eaaf8a48445494964bd21a6c38c788f40f | 2026-01-04T15:02:54.911792Z | false |
PHP-CS-Fixer/PHP-CS-Fixer | https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/63b024eaaf8a48445494964bd21a6c38c788f40f/src/AbstractProxyFixer.php | src/AbstractProxyFixer.php | <?php
declare(strict_types=1);
/*
* This file is part of PHP CS Fixer.
*
* (c) Fabien Potencier <fabien@symfony.com>
* Dariusz Rumiński <dariusz.ruminski@gmail.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace PhpCsFixer;
us... | php | MIT | 63b024eaaf8a48445494964bd21a6c38c788f40f | 2026-01-04T15:02:54.911792Z | false |
PHP-CS-Fixer/PHP-CS-Fixer | https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/63b024eaaf8a48445494964bd21a6c38c788f40f/src/Preg.php | src/Preg.php | <?php
declare(strict_types=1);
/*
* This file is part of PHP CS Fixer.
*
* (c) Fabien Potencier <fabien@symfony.com>
* Dariusz Rumiński <dariusz.ruminski@gmail.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace PhpCsFixer;
/*... | php | MIT | 63b024eaaf8a48445494964bd21a6c38c788f40f | 2026-01-04T15:02:54.911792Z | false |
PHP-CS-Fixer/PHP-CS-Fixer | https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/63b024eaaf8a48445494964bd21a6c38c788f40f/src/AbstractFixer.php | src/AbstractFixer.php | <?php
declare(strict_types=1);
/*
* This file is part of PHP CS Fixer.
*
* (c) Fabien Potencier <fabien@symfony.com>
* Dariusz Rumiński <dariusz.ruminski@gmail.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace PhpCsFixer;
us... | php | MIT | 63b024eaaf8a48445494964bd21a6c38c788f40f | 2026-01-04T15:02:54.911792Z | false |
PHP-CS-Fixer/PHP-CS-Fixer | https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/63b024eaaf8a48445494964bd21a6c38c788f40f/src/ConfigInterface.php | src/ConfigInterface.php | <?php
declare(strict_types=1);
/*
* This file is part of PHP CS Fixer.
*
* (c) Fabien Potencier <fabien@symfony.com>
* Dariusz Rumiński <dariusz.ruminski@gmail.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace PhpCsFixer;
us... | php | MIT | 63b024eaaf8a48445494964bd21a6c38c788f40f | 2026-01-04T15:02:54.911792Z | false |
PHP-CS-Fixer/PHP-CS-Fixer | https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/63b024eaaf8a48445494964bd21a6c38c788f40f/src/ToolInfo.php | src/ToolInfo.php | <?php
declare(strict_types=1);
/*
* This file is part of PHP CS Fixer.
*
* (c) Fabien Potencier <fabien@symfony.com>
* Dariusz Rumiński <dariusz.ruminski@gmail.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace PhpCsFixer;
us... | php | MIT | 63b024eaaf8a48445494964bd21a6c38c788f40f | 2026-01-04T15:02:54.911792Z | false |
PHP-CS-Fixer/PHP-CS-Fixer | https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/63b024eaaf8a48445494964bd21a6c38c788f40f/src/FileRemoval.php | src/FileRemoval.php | <?php
declare(strict_types=1);
/*
* This file is part of PHP CS Fixer.
*
* (c) Fabien Potencier <fabien@symfony.com>
* Dariusz Rumiński <dariusz.ruminski@gmail.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace PhpCsFixer;
/*... | php | MIT | 63b024eaaf8a48445494964bd21a6c38c788f40f | 2026-01-04T15:02:54.911792Z | false |
PHP-CS-Fixer/PHP-CS-Fixer | https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/63b024eaaf8a48445494964bd21a6c38c788f40f/src/Utils.php | src/Utils.php | <?php
declare(strict_types=1);
/*
* This file is part of PHP CS Fixer.
*
* (c) Fabien Potencier <fabien@symfony.com>
* Dariusz Rumiński <dariusz.ruminski@gmail.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace PhpCsFixer;
us... | php | MIT | 63b024eaaf8a48445494964bd21a6c38c788f40f | 2026-01-04T15:02:54.911792Z | false |
PHP-CS-Fixer/PHP-CS-Fixer | https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/63b024eaaf8a48445494964bd21a6c38c788f40f/src/ExecutorWithoutErrorHandlerException.php | src/ExecutorWithoutErrorHandlerException.php | <?php
declare(strict_types=1);
/*
* This file is part of PHP CS Fixer.
*
* (c) Fabien Potencier <fabien@symfony.com>
* Dariusz Rumiński <dariusz.ruminski@gmail.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace PhpCsFixer;
/*... | php | MIT | 63b024eaaf8a48445494964bd21a6c38c788f40f | 2026-01-04T15:02:54.911792Z | false |
PHP-CS-Fixer/PHP-CS-Fixer | https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/63b024eaaf8a48445494964bd21a6c38c788f40f/src/Config.php | src/Config.php | <?php
declare(strict_types=1);
/*
* This file is part of PHP CS Fixer.
*
* (c) Fabien Potencier <fabien@symfony.com>
* Dariusz Rumiński <dariusz.ruminski@gmail.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace PhpCsFixer;
us... | php | MIT | 63b024eaaf8a48445494964bd21a6c38c788f40f | 2026-01-04T15:02:54.911792Z | false |
PHP-CS-Fixer/PHP-CS-Fixer | https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/63b024eaaf8a48445494964bd21a6c38c788f40f/src/UnsupportedPhpVersionAllowedConfigInterface.php | src/UnsupportedPhpVersionAllowedConfigInterface.php | <?php
declare(strict_types=1);
/*
* This file is part of PHP CS Fixer.
*
* (c) Fabien Potencier <fabien@symfony.com>
* Dariusz Rumiński <dariusz.ruminski@gmail.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace PhpCsFixer;
/*... | php | MIT | 63b024eaaf8a48445494964bd21a6c38c788f40f | 2026-01-04T15:02:54.911792Z | false |
PHP-CS-Fixer/PHP-CS-Fixer | https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/63b024eaaf8a48445494964bd21a6c38c788f40f/src/PharCheckerInterface.php | src/PharCheckerInterface.php | <?php
declare(strict_types=1);
/*
* This file is part of PHP CS Fixer.
*
* (c) Fabien Potencier <fabien@symfony.com>
* Dariusz Rumiński <dariusz.ruminski@gmail.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace PhpCsFixer;
/*... | php | MIT | 63b024eaaf8a48445494964bd21a6c38c788f40f | 2026-01-04T15:02:54.911792Z | false |
PHP-CS-Fixer/PHP-CS-Fixer | https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/63b024eaaf8a48445494964bd21a6c38c788f40f/src/FileReader.php | src/FileReader.php | <?php
declare(strict_types=1);
/*
* This file is part of PHP CS Fixer.
*
* (c) Fabien Potencier <fabien@symfony.com>
* Dariusz Rumiński <dariusz.ruminski@gmail.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace PhpCsFixer;
/*... | php | MIT | 63b024eaaf8a48445494964bd21a6c38c788f40f | 2026-01-04T15:02:54.911792Z | false |
PHP-CS-Fixer/PHP-CS-Fixer | https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/63b024eaaf8a48445494964bd21a6c38c788f40f/src/Future.php | src/Future.php | <?php
declare(strict_types=1);
/*
* This file is part of PHP CS Fixer.
*
* (c) Fabien Potencier <fabien@symfony.com>
* Dariusz Rumiński <dariusz.ruminski@gmail.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace PhpCsFixer;
/*... | php | MIT | 63b024eaaf8a48445494964bd21a6c38c788f40f | 2026-01-04T15:02:54.911792Z | false |
PHP-CS-Fixer/PHP-CS-Fixer | https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/63b024eaaf8a48445494964bd21a6c38c788f40f/src/Hasher.php | src/Hasher.php | <?php
declare(strict_types=1);
/*
* This file is part of PHP CS Fixer.
*
* (c) Fabien Potencier <fabien@symfony.com>
* Dariusz Rumiński <dariusz.ruminski@gmail.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace PhpCsFixer;
/*... | php | MIT | 63b024eaaf8a48445494964bd21a6c38c788f40f | 2026-01-04T15:02:54.911792Z | false |
PHP-CS-Fixer/PHP-CS-Fixer | https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/63b024eaaf8a48445494964bd21a6c38c788f40f/src/AbstractFopenFlagFixer.php | src/AbstractFopenFlagFixer.php | <?php
declare(strict_types=1);
/*
* This file is part of PHP CS Fixer.
*
* (c) Fabien Potencier <fabien@symfony.com>
* Dariusz Rumiński <dariusz.ruminski@gmail.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace PhpCsFixer;
us... | php | MIT | 63b024eaaf8a48445494964bd21a6c38c788f40f | 2026-01-04T15:02:54.911792Z | false |
PHP-CS-Fixer/PHP-CS-Fixer | https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/63b024eaaf8a48445494964bd21a6c38c788f40f/src/AbstractNoUselessElseFixer.php | src/AbstractNoUselessElseFixer.php | <?php
declare(strict_types=1);
/*
* This file is part of PHP CS Fixer.
*
* (c) Fabien Potencier <fabien@symfony.com>
* Dariusz Rumiński <dariusz.ruminski@gmail.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace PhpCsFixer;
us... | php | MIT | 63b024eaaf8a48445494964bd21a6c38c788f40f | 2026-01-04T15:02:54.911792Z | false |
PHP-CS-Fixer/PHP-CS-Fixer | https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/63b024eaaf8a48445494964bd21a6c38c788f40f/src/Finder.php | src/Finder.php | <?php
declare(strict_types=1);
/*
* This file is part of PHP CS Fixer.
*
* (c) Fabien Potencier <fabien@symfony.com>
* Dariusz Rumiński <dariusz.ruminski@gmail.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace PhpCsFixer;
us... | php | MIT | 63b024eaaf8a48445494964bd21a6c38c788f40f | 2026-01-04T15:02:54.911792Z | false |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.