Completed
Push — master ( 8fdd0f...2be002 )
by Ma
02:29
created
src/Monitor/Monitor.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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'
Please login to merge, or discard this patch.