diff --git a/autoload.php b/autoload.php index 13af0d1..662bf60 100644 --- a/autoload.php +++ b/autoload.php @@ -2,6 +2,8 @@ /** * Paragon Initiative Enterprises - Password Lock * PSR-4 compatible autoloader + * + * @psalm-suppress MissingClosureParamType */ \spl_autoload_register(function ($class) { // Project-specific namespace prefix @@ -37,5 +39,6 @@ }); if (file_exists(__DIR__ . '/vendor/autoload.php')) { + /** @psalm-suppress MissingFile */ include_once __DIR__ . '/vendor/autoload.php'; }