Completed
Branch master (6f1615)
by Jelle
06:32 queued 03:43
created
src/Entity/Factory/Factory.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,6 @@
 block discarded – undo
6 6
 
7 7
 namespace TheSportsDb\Entity\Factory;
8 8
 
9
-use FastNorth\PropertyMapper\MapperInterface;
10 9
 use TheSportsDb\Entity\EntityInterface;
11 10
 use TheSportsDb\Entity\EntityManagerConsumerTrait;
12 11
 use TheSportsDb\Entity\EntityManagerInterface;
Please login to merge, or discard this patch.
src/Entity/EntityManagerInterface.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
    *
29 29
    * @param string $entityType
30 30
    *
31
-   * @return TheSportsDb\Entity\Factory\FactoryInterface
31
+   * @return Factory\FactoryInterface
32 32
    *   The repositort for the given entity type.
33 33
    */
34 34
   public function factory($entityType);
Please login to merge, or discard this patch.
src/Entity/Factory/FactoryInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -27,5 +27,8 @@
 block discarded – undo
27 27
    */
28 28
   public function create(\stdClass $values, $entityType);
29 29
 
30
+  /**
31
+   * @return \TheSportsDb\Entity\EntityManagerInterface
32
+   */
30 33
   public function getEntityManager();
31 34
 }
Please login to merge, or discard this patch.
src/Http/TheSportsDbClientInterface.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -15,6 +15,8 @@
 block discarded – undo
15 15
 
16 16
   /**
17 17
    * {@inheritdoc}
18
+   * @param string $endpoint
19
+   * @return \stdClass
18 20
    */
19 21
   public function doRequest($endpoint, array $parameters = array());
20 22
 }
Please login to merge, or discard this patch.