diff --git a/lib/Tmdb/Factory/AbstractFactory.php b/lib/Tmdb/Factory/AbstractFactory.php
index 34cc63f7..f11e9902 100644
--- a/lib/Tmdb/Factory/AbstractFactory.php
+++ b/lib/Tmdb/Factory/AbstractFactory.php
@@ -21,7 +21,7 @@
  * Class AbstractFactory
  * @package Tmdb\Factory
  */
-abstract class AbstractFactory implements FactoryInterface {
+abstract class AbstractFactory {
     /**
      * Convert an array to an hydrated object
      *
diff --git a/lib/Tmdb/Factory/FactoryInterface.php b/lib/Tmdb/Factory/FactoryInterface.php
deleted file mode 100644
index 1afcaaba..00000000
--- a/lib/Tmdb/Factory/FactoryInterface.php
+++ /dev/null
@@ -1,25 +0,0 @@
-<?php
-/**
- * This file is part of the Tmdb PHP API created by Michael Roterman.
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- *
- * @package Tmdb
- * @author Michael Roterman <michael@wtfz.net>
- * @copyright (c) 2013, Michael Roterman
- * @version 0.0.1
- */
-namespace Tmdb\Factory;
-
-/**
- * Interface FactoryInterface
- * @package Tmdb\Factory
- */
-interface FactoryInterface {
-
-    /**
-     * @return \Tmdb\Model\AbstractModel|null
-     */
-    function create();
-}