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
flarum/flarum
https://github.com/flarum/flarum/blob/cc4acfc61fb0f2cf0225de4e7a713a40bffaca69/site.php
site.php
<?php /* * This file is part of Flarum. * * For detailed copyright and license information, please view the * LICENSE file that was distributed with this source code. */ /* |------------------------------------------------------------------------------- | Load the autoloader |------------------------------------...
php
MIT
cc4acfc61fb0f2cf0225de4e7a713a40bffaca69
2026-01-04T15:02:34.473828Z
false
flarum/flarum
https://github.com/flarum/flarum/blob/cc4acfc61fb0f2cf0225de4e7a713a40bffaca69/extend.php
extend.php
<?php /* * This file is part of Flarum. * * For detailed copyright and license information, please view the * LICENSE file that was distributed with this source code. */ use Flarum\Extend; return [ // Register extenders here to customize your forum! ];
php
MIT
cc4acfc61fb0f2cf0225de4e7a713a40bffaca69
2026-01-04T15:02:34.473828Z
false
flarum/flarum
https://github.com/flarum/flarum/blob/cc4acfc61fb0f2cf0225de4e7a713a40bffaca69/public/index.php
public/index.php
<?php /* * This file is part of Flarum. * * For detailed copyright and license information, please view the * LICENSE file that was distributed with this source code. */ $site = require '../site.php'; /* |------------------------------------------------------------------------------- | Accept incoming HTTP requ...
php
MIT
cc4acfc61fb0f2cf0225de4e7a713a40bffaca69
2026-01-04T15:02:34.473828Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/.php-cs-fixer.php
.php-cs-fixer.php
<?php $header = <<<EOF This file is part of the Monolog package. (c) Jordi Boggiano <j.boggiano@seld.be> For the full copyright and license information, please view the LICENSE file that was distributed with this source code. EOF; $finder = PhpCsFixer\Finder::create() ->files() ->name('*.php') ->exclude...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/phpstan-ignore-by-php-version.neon.php
phpstan-ignore-by-php-version.neon.php
<?php declare(strict_types = 1); $includes = []; if (PHP_VERSION_ID >= 80200) { $includes[] = __DIR__ . '/phpstan-baseline-8.2.neon'; } $config['includes'] = $includes; return $config;
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/JsonSerializableDateTimeImmutable.php
src/Monolog/JsonSerializableDateTimeImmutable.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog; use DateTimeZone; /** * Overrides def...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/LogRecord.php
src/Monolog/LogRecord.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog; use ArrayAccess; /** * Monolog log re...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Registry.php
src/Monolog/Registry.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog; use InvalidArgumentException; /** * M...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Level.php
src/Monolog/Level.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog; use Psr\Log\LogLevel; /** * Represent...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/DateTimeImmutable.php
src/Monolog/DateTimeImmutable.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog; class_alias(JsonSerializableDateTimeImm...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/ErrorHandler.php
src/Monolog/ErrorHandler.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog; use Closure; use Psr\Log\LoggerInterfac...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/SignalHandler.php
src/Monolog/SignalHandler.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog; use Psr\Log\LoggerInterface; use Psr\Lo...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Utils.php
src/Monolog/Utils.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog; final class Utils { const DEFAULT_J...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/ResettableInterface.php
src/Monolog/ResettableInterface.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog; /** * Handler or Processor implementin...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Logger.php
src/Monolog/Logger.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog; use Closure; use DateTimeZone; use Fibe...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Processor/ProcessIdProcessor.php
src/Monolog/Processor/ProcessIdProcessor.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Processor; use Monolog\LogRecord; /** ...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Processor/HostnameProcessor.php
src/Monolog/Processor/HostnameProcessor.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Processor; use Monolog\LogRecord; /** ...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Processor/IntrospectionProcessor.php
src/Monolog/Processor/IntrospectionProcessor.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Processor; use Monolog\Level; use Monolo...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Processor/LoadAverageProcessor.php
src/Monolog/Processor/LoadAverageProcessor.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Processor; use Monolog\LogRecord; /** ...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Processor/MemoryPeakUsageProcessor.php
src/Monolog/Processor/MemoryPeakUsageProcessor.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Processor; use Monolog\LogRecord; /** ...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Processor/WebProcessor.php
src/Monolog/Processor/WebProcessor.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Processor; use ArrayAccess; use Monolog\...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Processor/GitProcessor.php
src/Monolog/Processor/GitProcessor.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Processor; use Monolog\Level; use Monolo...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Processor/ProcessorInterface.php
src/Monolog/Processor/ProcessorInterface.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Processor; use Monolog\LogRecord; /** ...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Processor/MemoryProcessor.php
src/Monolog/Processor/MemoryProcessor.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Processor; /** * Some methods that are ...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Processor/MemoryUsageProcessor.php
src/Monolog/Processor/MemoryUsageProcessor.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Processor; use Monolog\LogRecord; /** ...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Processor/ClosureContextProcessor.php
src/Monolog/Processor/ClosureContextProcessor.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Processor; use Monolog\LogRecord; /** ...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Processor/UidProcessor.php
src/Monolog/Processor/UidProcessor.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Processor; use Monolog\ResettableInterfa...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Processor/MercurialProcessor.php
src/Monolog/Processor/MercurialProcessor.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Processor; use Monolog\Level; use Monolo...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Processor/PsrLogMessageProcessor.php
src/Monolog/Processor/PsrLogMessageProcessor.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Processor; use Monolog\Utils; use Monolo...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Processor/TagProcessor.php
src/Monolog/Processor/TagProcessor.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Processor; use Monolog\LogRecord; /** ...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Formatter/WildfireFormatter.php
src/Monolog/Formatter/WildfireFormatter.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Formatter; use Monolog\Level; use Monolo...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Formatter/ScalarFormatter.php
src/Monolog/Formatter/ScalarFormatter.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Formatter; use Monolog\LogRecord; /** ...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Formatter/MongoDBFormatter.php
src/Monolog/Formatter/MongoDBFormatter.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Formatter; use MongoDB\BSON\Type; use Mo...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Formatter/ElasticsearchFormatter.php
src/Monolog/Formatter/ElasticsearchFormatter.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Formatter; use DateTimeInterface; use Mo...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Formatter/ChromePHPFormatter.php
src/Monolog/Formatter/ChromePHPFormatter.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Formatter; use Monolog\Level; use Monolo...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Formatter/LineFormatter.php
src/Monolog/Formatter/LineFormatter.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Formatter; use Closure; use Monolog\Util...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Formatter/SyslogFormatter.php
src/Monolog/Formatter/SyslogFormatter.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Formatter; use Monolog\Level; use Monolo...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Formatter/FluentdFormatter.php
src/Monolog/Formatter/FluentdFormatter.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Formatter; use Monolog\Utils; use Monolo...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Formatter/GoogleCloudLoggingFormatter.php
src/Monolog/Formatter/GoogleCloudLoggingFormatter.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Formatter; use DateTimeInterface; use Mo...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Formatter/LogmaticFormatter.php
src/Monolog/Formatter/LogmaticFormatter.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Formatter; use Monolog\LogRecord; /** ...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Formatter/FlowdockFormatter.php
src/Monolog/Formatter/FlowdockFormatter.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Formatter; use Monolog\LogRecord; /** ...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Formatter/NormalizerFormatter.php
src/Monolog/Formatter/NormalizerFormatter.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Formatter; use Monolog\JsonSerializableD...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Formatter/JsonFormatter.php
src/Monolog/Formatter/JsonFormatter.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Formatter; use Stringable; use Throwable...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Formatter/GelfMessageFormatter.php
src/Monolog/Formatter/GelfMessageFormatter.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Formatter; use Monolog\Level; use Gelf\M...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Formatter/FormatterInterface.php
src/Monolog/Formatter/FormatterInterface.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Formatter; use Monolog\LogRecord; /** ...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Formatter/LogstashFormatter.php
src/Monolog/Formatter/LogstashFormatter.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Formatter; use Monolog\LogRecord; /** ...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Formatter/HtmlFormatter.php
src/Monolog/Formatter/HtmlFormatter.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Formatter; use Monolog\Level; use Monolo...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Formatter/LogglyFormatter.php
src/Monolog/Formatter/LogglyFormatter.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Formatter; use Monolog\LogRecord; /** ...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Formatter/ElasticaFormatter.php
src/Monolog/Formatter/ElasticaFormatter.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Formatter; use Elastica\Document; use Mo...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Test/TestCase.php
src/Monolog/Test/TestCase.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Test; /** * Lets you easily generate lo...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Test/MonologTestCase.php
src/Monolog/Test/MonologTestCase.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Test; use Monolog\Level; use Monolog\Log...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Handler/GelfHandler.php
src/Monolog/Handler/GelfHandler.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Handler; use Gelf\PublisherInterface; us...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Handler/LogEntriesHandler.php
src/Monolog/Handler/LogEntriesHandler.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Handler; use Monolog\Level; use Monolog\...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Handler/ElasticsearchHandler.php
src/Monolog/Handler/ElasticsearchHandler.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Handler; use Elastic\Elasticsearch\Respo...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Handler/ErrorLogHandler.php
src/Monolog/Handler/ErrorLogHandler.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Handler; use Monolog\Formatter\LineForma...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Handler/SocketHandler.php
src/Monolog/Handler/SocketHandler.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Handler; use Monolog\Level; use Monolog\...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Handler/RedisPubSubHandler.php
src/Monolog/Handler/RedisPubSubHandler.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Handler; use Monolog\Formatter\LineForma...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Handler/WhatFailureGroupHandler.php
src/Monolog/Handler/WhatFailureGroupHandler.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Handler; use Monolog\LogRecord; use Thro...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Handler/ProcessableHandlerTrait.php
src/Monolog/Handler/ProcessableHandlerTrait.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Handler; use Monolog\ResettableInterface...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Handler/MongoDBHandler.php
src/Monolog/Handler/MongoDBHandler.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Handler; use MongoDB\Client; use MongoDB...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Handler/AmqpHandler.php
src/Monolog/Handler/AmqpHandler.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Handler; use Gelf\Message as GelfMessage...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Handler/FingersCrossedHandler.php
src/Monolog/Handler/FingersCrossedHandler.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Handler; use Closure; use Monolog\Handle...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Handler/FirePHPHandler.php
src/Monolog/Handler/FirePHPHandler.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Handler; use Monolog\Formatter\WildfireF...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Handler/CubeHandler.php
src/Monolog/Handler/CubeHandler.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Handler; use Monolog\Level; use Monolog\...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Handler/AbstractProcessingHandler.php
src/Monolog/Handler/AbstractProcessingHandler.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Handler; use Monolog\LogRecord; /** * ...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Handler/SlackWebhookHandler.php
src/Monolog/Handler/SlackWebhookHandler.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Handler; use Monolog\Formatter\Formatter...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Handler/NativeMailerHandler.php
src/Monolog/Handler/NativeMailerHandler.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Handler; use Monolog\Level; use Monolog\...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Handler/MailHandler.php
src/Monolog/Handler/MailHandler.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Handler; use Monolog\Formatter\Formatter...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Handler/Handler.php
src/Monolog/Handler/Handler.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Handler; /** * Base Handler class provi...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Handler/SendGridHandler.php
src/Monolog/Handler/SendGridHandler.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Handler; use Monolog\Level; use Monolog\...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Handler/FallbackGroupHandler.php
src/Monolog/Handler/FallbackGroupHandler.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Handler; use Throwable; use Monolog\LogR...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Handler/SqsHandler.php
src/Monolog/Handler/SqsHandler.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Handler; use Aws\Sqs\SqsClient; use Mono...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Handler/HandlerWrapper.php
src/Monolog/Handler/HandlerWrapper.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Handler; use Monolog\ResettableInterface...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Handler/PushoverHandler.php
src/Monolog/Handler/PushoverHandler.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Handler; use Monolog\Level; use Monolog\...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Handler/SlackHandler.php
src/Monolog/Handler/SlackHandler.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Handler; use Monolog\Formatter\Formatter...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Handler/FilterHandler.php
src/Monolog/Handler/FilterHandler.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Handler; use Closure; use Monolog\Level;...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Handler/ChromePHPHandler.php
src/Monolog/Handler/ChromePHPHandler.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Handler; use Monolog\Formatter\ChromePHP...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Handler/SamplingHandler.php
src/Monolog/Handler/SamplingHandler.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Handler; use Closure; use Monolog\Format...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Handler/TestHandler.php
src/Monolog/Handler/TestHandler.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Handler; use Monolog\Level; use Monolog\...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Handler/SyslogHandler.php
src/Monolog/Handler/SyslogHandler.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Handler; use Monolog\Level; use Monolog\...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Handler/LogglyHandler.php
src/Monolog/Handler/LogglyHandler.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Handler; use Monolog\Level; use Monolog\...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Handler/BufferHandler.php
src/Monolog/Handler/BufferHandler.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Handler; use Monolog\Level; use Monolog\...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Handler/DoctrineCouchDBHandler.php
src/Monolog/Handler/DoctrineCouchDBHandler.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Handler; use Monolog\Level; use Monolog\...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Handler/BrowserConsoleHandler.php
src/Monolog/Handler/BrowserConsoleHandler.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Handler; use Monolog\Formatter\Formatter...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Handler/StreamHandler.php
src/Monolog/Handler/StreamHandler.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Handler; use Monolog\Level; use Monolog\...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Handler/FormattableHandlerTrait.php
src/Monolog/Handler/FormattableHandlerTrait.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Handler; use Monolog\Formatter\Formatter...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Handler/TelegramBotHandler.php
src/Monolog/Handler/TelegramBotHandler.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Handler; use RuntimeException; use Monol...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Handler/ProcessableHandlerInterface.php
src/Monolog/Handler/ProcessableHandlerInterface.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Handler; use Monolog\Processor\Processor...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Handler/NoopHandler.php
src/Monolog/Handler/NoopHandler.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Handler; use Monolog\LogRecord; /** * ...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Handler/ElasticaHandler.php
src/Monolog/Handler/ElasticaHandler.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Handler; use Elastic\Transport\Exception...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Handler/RedisHandler.php
src/Monolog/Handler/RedisHandler.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Handler; use Monolog\Formatter\LineForma...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Handler/MandrillHandler.php
src/Monolog/Handler/MandrillHandler.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Handler; use Monolog\Level; use Swift; u...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Handler/LogmaticHandler.php
src/Monolog/Handler/LogmaticHandler.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Handler; use Monolog\Level; use Monolog\...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Handler/DeduplicationHandler.php
src/Monolog/Handler/DeduplicationHandler.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Handler; use Monolog\Level; use Monolog\...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Handler/InsightOpsHandler.php
src/Monolog/Handler/InsightOpsHandler.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Handler; use Monolog\Level; use Monolog\...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Handler/ZendMonitorHandler.php
src/Monolog/Handler/ZendMonitorHandler.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Handler; use Monolog\Formatter\Formatter...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Handler/OverflowHandler.php
src/Monolog/Handler/OverflowHandler.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Handler; use Monolog\Level; use Monolog\...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Handler/AbstractHandler.php
src/Monolog/Handler/AbstractHandler.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Handler; use Monolog\Level; use Monolog\...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Handler/AbstractSyslogHandler.php
src/Monolog/Handler/AbstractSyslogHandler.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Handler; use Monolog\Level; use Monolog\...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false
Seldaek/monolog
https://github.com/Seldaek/monolog/blob/b321dd6749f0bf7189444158a3ce785cc16d69b0/src/Monolog/Handler/GroupHandler.php
src/Monolog/Handler/GroupHandler.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Handler; use Monolog\Formatter\Formatter...
php
MIT
b321dd6749f0bf7189444158a3ce785cc16d69b0
2026-01-04T15:02:34.332473Z
false