Browse Source

Change return type to string|bool to match the return valuesof App::className().

Robert Pustulka 8 years ago
parent
commit
89c2cda6b0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/Core/ObjectRegistry.php

+ 1 - 1
src/Core/ObjectRegistry.php

@@ -152,7 +152,7 @@ abstract class ObjectRegistry implements Countable, IteratorAggregate
      * Should resolve the classname for a given object type.
      *
      * @param string $class The class to resolve.
-     * @return string|false The resolved name or false for failure.
+     * @return string|bool The resolved name or false for failure.
      */
     abstract protected function _resolveClassName($class);