We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In https://github.com/Luracast/Restler/blob/master/src/AutoLoader.php#L293 i see that autoloaders methods are called statically
$b::$loader[1]($className)
If you have a look on composer (https://github.com/composer/composer/blob/f509c41280768b1d3047271ec5b50da33184d98d/src/Composer/Autoload/ClassLoader.php#L425) you can see that "loadClass" method is NOT static.
In fact, this syntax generates a fatal error Access to undeclared static property: Composer\Autoload\ClassLoader::$loader
Access to undeclared static property: Composer\Autoload\ClassLoader::$loader
I'd like to understand why such a static call ? Is there on earth an autoloader whith static methods ?
The text was updated successfully, but these errors were encountered:
Bypass pre filtering for parameters with multiple types. Closes Lurac…
c50fff2
…ast#673
Successfully merging a pull request may close this issue.
In https://github.com/Luracast/Restler/blob/master/src/AutoLoader.php#L293 i see that autoloaders methods are called statically
If you have a look on composer (https://github.com/composer/composer/blob/f509c41280768b1d3047271ec5b50da33184d98d/src/Composer/Autoload/ClassLoader.php#L425) you can see that "loadClass" method is NOT static.
In fact, this syntax generates a fatal error
Access to undeclared static property: Composer\Autoload\ClassLoader::$loader
I'd like to understand why such a static call ? Is there on earth an autoloader whith static methods ?
The text was updated successfully, but these errors were encountered: