@@ -17,7 +17,7 @@ discard block |
||
| 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 |
||
| 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 | |
@@ -83,7 +83,7 @@ |
||
| 83 | 83 | return $this->data[$name]; |
| 84 | 84 | } |
| 85 | 85 | |
| 86 | - throw new \InvalidArgumentException('Invalid property: ' . $name); |
|
| 86 | + throw new \InvalidArgumentException('Invalid property: '.$name); |
|
| 87 | 87 | } |
| 88 | 88 | |
| 89 | 89 | /** |