diff options
author | Mario <mario@mariovavti.com> | 2021-06-30 07:19:16 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-06-30 07:19:16 +0000 |
commit | ca3ab2014f54082a772fe0708c7412b08e397f2d (patch) | |
tree | bb4cb3a5811b78c2c1d9133a11612476382cdc4b /vendor/composer/ClassLoader.php | |
parent | 3e6283a2622b107de71da56a77a1ef33d6a91aa9 (diff) | |
download | volse-hubzilla-ca3ab2014f54082a772fe0708c7412b08e397f2d.tar.gz volse-hubzilla-ca3ab2014f54082a772fe0708c7412b08e397f2d.tar.bz2 volse-hubzilla-ca3ab2014f54082a772fe0708c7412b08e397f2d.zip |
update composer autoload
Diffstat (limited to 'vendor/composer/ClassLoader.php')
-rw-r--r-- | vendor/composer/ClassLoader.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/vendor/composer/ClassLoader.php b/vendor/composer/ClassLoader.php index 247294d66..6d0c3f2d0 100644 --- a/vendor/composer/ClassLoader.php +++ b/vendor/composer/ClassLoader.php @@ -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; } /** |