Completed
Push — master ( dde9ea...238875 )
by Jelle
17:54
created
src/Entity/Repository/RepositoryInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -25,6 +25,7 @@
 block discarded – undo
25 25
    *
26 26
    * @param \TheSportsDb\Entity\LeagueInterface $league
27 27
    *   The league to add.
28
+   * @return void
28 29
    */
29 30
   public function addLeague(LeagueInterface $league);
30 31
 }
Please login to merge, or discard this patch.
src/Entity/Proxy/Proxy.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,8 +7,8 @@
 block discarded – undo
7 7
 namespace TheSportsDb\Entity\Proxy;
8 8
 
9 9
 use TheSportsDb\Entity\EntityInterface;
10
-use TheSportsDb\Http\TheSportsDbClientInterface;
11 10
 use TheSportsDb\Entity\EntityManagerConsumerInterface;
11
+use TheSportsDb\Http\TheSportsDbClientInterface;
12 12
 
13 13
 /**
14 14
  * Interface for proxy objects.
Please login to merge, or discard this patch.
src/Entity/EntityPropertyUtil.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,8 +18,7 @@
 block discarded – undo
18 18
     $return = $val;
19 19
     if (method_exists($val, 'raw')) {
20 20
       $return = $val->raw();
21
-    }
22
-    elseif (is_array($val)) {
21
+    } elseif (is_array($val)) {
23 22
       $return = array();
24 23
       foreach ($val as $v) {
25 24
         $return[] = method_exists($v, 'raw') ? $v->raw() : $v;
Please login to merge, or discard this patch.
src/Entity/EntityManager.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -130,6 +130,7 @@
 block discarded – undo
130 130
 
131 131
   /**
132 132
    * {@inheritdoc}
133
+   * @param string $entityType
133 134
    */
134 135
   public function getPropertyMapDefinition($entityType) {
135 136
     if (!isset($this->propertyMapDefinitions[$entityType])) {
Please login to merge, or discard this patch.
src/Entity/Entity.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
    *   sportsdb api this property is from.
129 129
    * @param EntityManagerInterface $entityManager
130 130
    *   The entity manager.
131
-   * @param type $entityType
131
+   * @param string $entityType
132 132
    *   The enitity type to transform this value to.
133 133
    * @param string $idName
134 134
    *   The name of the identifier property as defined by the sportsdb api.
@@ -159,7 +159,7 @@  discard block
 block discarded – undo
159 159
    * @param array $contextPropertyMap
160 160
    *   Extra properties to map from the context
161 161
    *
162
-   * @return \stdClass
162
+   * @return string
163 163
    *   The raw data representing the entity.
164 164
    */
165 165
   public static function transformHelper($value, $context, $idName, array $contextPropertyMap = array()) {
Please login to merge, or discard this patch.
src/Entity/EntityInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -25,6 +25,7 @@
 block discarded – undo
25 25
    *
26 26
    * @param \TheSportsDb\Entity\LeagueInterface $league
27 27
    *   The league to add.
28
+   * @return void
28 29
    */
29 30
   public function addLeague(LeagueInterface $league);
30 31
 }
Please login to merge, or discard this patch.
src/Entity/Event.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -431,7 +431,7 @@  discard block
 block discarded – undo
431 431
    * @param type $value
432 432
    * @param type $context
433 433
    * @param EntityManagerInterface $entityManager
434
-   * @return type
434
+   * @return EntityInterface
435 435
    */
436 436
   public static function transformLeague($value, $context, EntityManagerInterface $entityManager) {
437 437
     return static::transform($value, $context, $entityManager, 'league', 'idLeague', array('strLeague' => 'strLeague'));
@@ -457,7 +457,7 @@  discard block
 block discarded – undo
457 457
    * @param type $value
458 458
    * @param type $context
459 459
    * @param EntityManagerInterface $entityManager
460
-   * @return type
460
+   * @return EntityInterface
461 461
    */
462 462
   public static function transformHomeTeam($value, $context, EntityManagerInterface $entityManager) {
463 463
     return static::transform($value, $context, $entityManager, 'team', 'idTeam', array('strHomeTeam' => 'strTeam'));
@@ -468,7 +468,7 @@  discard block
 block discarded – undo
468 468
    * @param type $value
469 469
    * @param type $context
470 470
    * @param EntityManagerInterface $entityManager
471
-   * @return type
471
+   * @return EntityInterface
472 472
    */
473 473
   public static function transformAwayTeam($value, $context, EntityManagerInterface $entityManager) {
474 474
     return static::transform($value, $context, $entityManager, 'team', 'idTeam', array('strAwayTeam' => 'strTeam'));
Please login to merge, or discard this patch.
src/Entity/League.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -243,7 +243,7 @@
 block discarded – undo
243 243
    * @param type $value
244 244
    * @param type $context
245 245
    * @param EntityManagerInterface $entityManager
246
-   * @return type
246
+   * @return EntityInterface
247 247
    */
248 248
   public static function transformSport($value, $context, EntityManagerInterface $entityManager) {
249 249
     return static::transform($value, $context, $entityManager, 'sport', 'strSport');
Please login to merge, or discard this patch.
src/Entity/Season.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
    * @param type $value
73 73
    * @param type $context
74 74
    * @param EntityManagerInterface $entityManager
75
-   * @return type
75
+   * @return EntityInterface
76 76
    */
77 77
   public static function transformLeague($value, $context, EntityManagerInterface $entityManager) {
78 78
     return static::transform($value, $context, $entityManager, 'league', 'idLeague', array('strLeague' => 'strLeague'));
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
    *
98 98
    * @param type $value
99 99
    * @param type $context
100
-   * @return type
100
+   * @return string
101 101
    */
102 102
   public static function transformId($value, $context) {
103 103
     return $value . '|' . $context->idLeague;
Please login to merge, or discard this patch.