Every error reported by PHPStan has an error identifier. Here’s a list of all error identifiers. In PHPStan Pro you can see the error identifier next to each error and filter errors by their identifiers.
Code example #
<?php declare(strict_types = 1);
namespace Vendor {
/** @internal */
class InternalType {}
}
namespace App {
/**
* @phpstan-type MyAlias \Vendor\InternalType
*/
class Config {}
}
Why is it reported? #
The type alias defined with @phpstan-type references a class that is marked as @internal. Internal classes are not meant to be used outside the package that defines them. Referencing an internal class in a type alias creates a dependency on an implementation detail that may change without notice in future versions of the package.
How to fix it #
Replace the internal class with a public type in the type alias:
/**
- * @phpstan-type MyAlias \Vendor\InternalType
+ * @phpstan-type MyAlias \Vendor\PublicType
*/
class Config {}
If the class is internal to the same package, the error will not be reported. The @internal restriction only applies to cross-package usage.
How to ignore this error #
You can use the identifier typeAlias.internalClass to ignore this error using a comment:
// @phpstan-ignore typeAlias.internalClass
codeThatProducesTheError();
You can also use only the identifier key to ignore all errors of the same type in your configuration file in the ignoreErrors parameter:
parameters:
ignoreErrors:
-
identifier: typeAlias.internalClass
Rules that report this error #
- PHPStan\Rules\InternalTag\RestrictedInternalClassNameUsageExtension [1]