aboutsummaryrefslogtreecommitdiffstats
path: root/core/namespace/Factory.php
diff options
context:
space:
mode:
Diffstat (limited to 'core/namespace/Factory.php')
-rw-r--r--core/namespace/Factory.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/namespace/Factory.php b/core/namespace/Factory.php
index 779b890..e30895d 100644
--- a/core/namespace/Factory.php
+++ b/core/namespace/Factory.php
@@ -13,6 +13,6 @@ abstract class Factory implements FactoryInterface {
# Gets an instance of a class from the runtime instance cache
#===============================================================================
protected static function fetchInstance($identifier) {
- return self::$storage[get_called_class()][$identifier] ?? FALSE;
+ return self::$storage[get_called_class()][$identifier] ?? false;
}
}