diff --git a/composer/bin/mddoc b/composer/bin/mddoc index bec52ff..3c48c1f 100755 --- a/composer/bin/mddoc +++ b/composer/bin/mddoc @@ -6,6 +6,11 @@ $files = [ __DIR__ . '/../../../../autoload.php', ]; +// phpdocumentor/reflection is noisy and doesn't look like it will be fixed +error_reporting( + error_reporting() & ~E_DEPRECATED +); + foreach( $files as $file ) { if( file_exists($file) ) { require $file;