The referenced Attribute class does not target class constants. This issue will be raised if a class constant is marked with an attribute that does not have the Attribute::TARGET_CLASS_CONSTANT
property.
One or more keys used in the options
array contains an invalid key in the setcookie
/setrawcookie
function. Starting from PHP 7.3.0, setcookie
and setrawcookie
functions provide the ability to set cookie options via passing an associative array to a third parameter.
An associative array only allows the use of expires
, path
, domain
, secure
, httponly
, and samesite
keys to be present. Using anything other than these would raise a warning for PHP > 8.0, and a fatal error for PHP >= 8.0 during the runtime.
Defined magic method doesn't match any of the PHP's built-in magic methods. Visit this link to view the list of all the allowed magic methods.
Trying to access an offset without providing a dimension is not allowed. This will emit a fatal error during runtime.
This issue is raised when increment/decrement operators are used on any other type of variable than numbers or strings.