updated plugin Menu Icons version 0.12.9

This commit is contained in:
2021-09-30 14:54:03 +00:00
committed by Gitium
parent 7b680d1372
commit 375bf37aad
9 changed files with 414 additions and 394 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;
}
/**