@@ -72,7 +72,7 @@ discard block |
||
72 | 72 | |
73 | 73 | private function isClientValid() |
74 | 74 | { |
75 | - if (! $this->client) { |
|
75 | + if (!$this->client) { |
|
76 | 76 | throw new \Exception('Client is not valid'); |
77 | 77 | } |
78 | 78 | } |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | { |
100 | 100 | $r = new \ReflectionClass(new Model\ServerHistory); |
101 | 101 | $properties = []; |
102 | - foreach($r->getProperties() as $property) { |
|
102 | + foreach ($r->getProperties() as $property) { |
|
103 | 103 | $properties[] = $property->name; |
104 | 104 | } |
105 | 105 | unset($properties['id']); |
@@ -130,7 +130,7 @@ discard block |
||
130 | 130 | { |
131 | 131 | $resources = $this->client->getResources(); |
132 | 132 | |
133 | - if (! $resources) { |
|
133 | + if (!$resources) { |
|
134 | 134 | $resources = json_encode( |
135 | 135 | array( |
136 | 136 | 'status' => 'offline' |