[PhpUnitBridge] fix uninitialized variable

This commit is contained in:
Nicolas Grekas 2019-09-19 16:48:53 +02:00
parent 9d882e8ce2
commit 2f6dc5eed1

View File

@ -52,16 +52,15 @@ class Deprecation
*/ */
private $triggeringFile; private $triggeringFile;
/** @var string[] absolute paths to vendor directories */ /** @var string[] Absolute paths to vendor directories */
private static $vendors; private static $vendors;
/** /**
* @var string[] absolute paths to source or tests of the project. This * @var string[] Absolute paths to source or tests of the project, cache
* excludes cache directories, because it is based on * directories exlcuded because it is based on autoloading
* autoloading rules and cache systems typically do not use * rules and cache systems typically do not use those
* those.
*/ */
private static $internalPaths; private static $internalPaths = [];
/** /**
* @param string $message * @param string $message