Fixed uninitialized typed properties

This commit is contained in:
Dylan K. Taylor
2022-06-06 17:23:10 +01:00
parent 2a24982bc4
commit b57f0a2b7e
3 changed files with 5 additions and 5 deletions

View File

@ -30,7 +30,7 @@ use function error_reporting;
trait CommonThreadPartsTrait{
/** @var \Threaded|\ClassLoader[]|null */
private ?\Threaded $classLoaders = null;
protected ?string $composerAutoloaderPath;
protected ?string $composerAutoloaderPath = null;
protected bool $isKilled = false;