Update to 3.5.7.1

This commit is contained in:
Lukas Bestle
2021-07-07 11:53:53 +02:00
parent 62b533a28f
commit 9bc881f37e
11 changed files with 607 additions and 616 deletions

View File

@@ -338,7 +338,7 @@ class ClassLoader
* Loads the given class or interface.
*
* @param string $class The name of the class
* @return bool|null True if loaded, null otherwise
* @return true|null True if loaded, null otherwise
*/
public function loadClass($class)
{
@@ -347,6 +347,8 @@ class ClassLoader
return true;
}
return null;
}
/**