diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/namespace/ItemFactory.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/namespace/ItemFactory.php b/core/namespace/ItemFactory.php index 35182f1..94b85ad 100644 --- a/core/namespace/ItemFactory.php +++ b/core/namespace/ItemFactory.php @@ -16,7 +16,7 @@ abstract class ItemFactory extends Factory implements FactoryInterface { #=========================================================================== # Build instance by slug #=========================================================================== - public static function buildBySlug($slug): \Item { + public static function buildBySlug($slug): Item { $Item = (new ReflectionClass(get_called_class()))->getNamespaceName().'\\Item'; return self::build($Item::getIDByField('slug', $slug, \Application::getDatabase())); } |