@@ -40,7 +40,7 @@ discard block |
||
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 |
||
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) |
@@ -46,7 +46,7 @@ |
||
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 |
@@ -41,7 +41,7 @@ |
||
41 | 41 | /** |
42 | 42 | * ClientLocal constructor. |
43 | 43 | * |
44 | - * @param $connection |
|
44 | + * @param Connection $connection |
|
45 | 45 | */ |
46 | 46 | public function __construct($connection) |
47 | 47 | { |