diff options
author | Thomas Lange <code@nerdmind.de> | 2017-04-29 18:20:40 +0200 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2017-04-29 18:20:40 +0200 |
commit | 90938c786935c878ad946a40d9b2e6436fcccc37 (patch) | |
tree | 946da2fdef664ff334b94cc69309853a80fc8e90 /core/namespace | |
parent | 70e4ed69f3401a895d29415f9ca523dc637c5c8e (diff) | |
download | blog-90938c786935c878ad946a40d9b2e6436fcccc37.tar.gz blog-90938c786935c878ad946a40d9b2e6436fcccc37.tar.xz blog-90938c786935c878ad946a40d9b2e6436fcccc37.zip |
ItemFactory does not need to implement FactoryInterface because it is already implemented in the parent Factory class.
Diffstat (limited to 'core/namespace')
-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 94b85ad..dec136f 100644 --- a/core/namespace/ItemFactory.php +++ b/core/namespace/ItemFactory.php @@ -1,5 +1,5 @@ <?php -abstract class ItemFactory extends Factory implements FactoryInterface { +abstract class ItemFactory extends Factory { #=========================================================================== # Build instance by ID |