Completed
Push — d64 ( 17b7b4...2d7146 )
by Welling
02:13
created
src/ClientLocal.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
     /**
41 41
      * ClientLocal constructor.
42 42
      *
43
-     * @param $connection
43
+     * @param Connection $connection
44 44
      */
45 45
     public function __construct($connection)
46 46
     {
@@ -268,7 +268,7 @@  discard block
 block discarded – undo
268 268
     /**
269 269
      * Get a table gateway for the given table name
270 270
      *
271
-     * @param $tableName
271
+     * @param string $tableName
272 272
      *
273 273
      * @return RelationalTableGatewayWithConditions
274 274
      */
Please login to merge, or discard this patch.
src/Response/EntryCollection.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
  *
18 18
  * @author Welling Guzmán <[email protected]>
19 19
  */
20
-class EntryCollection implements ResponseInterface, \IteratorAggregate , \Countable
20
+class EntryCollection implements ResponseInterface, \IteratorAggregate, \Countable
21 21
 {
22 22
     /**
23 23
      * @var array
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
 
47 47
         $rows = isset($data['rows']) ? $data['rows'] : [];
48 48
         $items = [];
49
-        foreach($rows as $row) {
49
+        foreach ($rows as $row) {
50 50
             $items[] = new Entry($row);
51 51
         }
52 52
 
Please login to merge, or discard this patch.
src/Response/Entry.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
     public function __construct($data)
41 41
     {
42 42
         $this->rawData = $data;
43
-        foreach($data as $field => $value) {
43
+        foreach ($data as $field => $value) {
44 44
             if (isset($value['rows'])) {
45 45
                 $this->data[$field] = new EntryCollection($value);
46 46
             } else if (is_array($value)) {
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
             return $this->data[$name];
106 106
         }
107 107
 
108
-        throw new \InvalidArgumentException('Invalid property: ' . $name);
108
+        throw new \InvalidArgumentException('Invalid property: '.$name);
109 109
     }
110 110
 
111 111
     public function __set($name, $value)
Please login to merge, or discard this patch.