1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-08-05 04:37:38 +02:00

Merge branch '1.x'

This commit is contained in:
Jordi Boggiano
2019-09-05 14:38:58 +02:00
5 changed files with 13 additions and 7 deletions

View File

@@ -13,6 +13,12 @@ $finder = PhpCsFixer\Finder::create()
->files()
->name('*.php')
->exclude('Fixtures')
// The next 4 files are here for forward compatibility, and are not used by
// Monolog itself
->exclude(__DIR__.'src/Monolog/Handler/FormattableHandlerInterface.php')
->exclude(__DIR__.'src/Monolog/Handler/FormattableHandlerTrait.php')
->exclude(__DIR__.'src/Monolog/Handler/ProcessableHandlerInterface.php')
->exclude(__DIR__.'src/Monolog/Handler/ProcessableHandlerTrait.php')
->in(__DIR__.'/src')
->in(__DIR__.'/tests')
;