Test Failed
Push — master ( d27aa0...091d57 )
by Guillaume
13:40
created
src/Services/Everhour.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
 
81 81
             $timer = json_decode($response->getBody()->getContents());
82 82
 
83
-            if (! isset($timer->status) || $timer->status !== 'active') {
83
+            if (!isset($timer->status) || $timer->status !== 'active') {
84 84
                 return false;
85 85
             }
86 86
         } catch (\Exception $e) {
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
 
98 98
             $timer = json_decode($response->getBody()->getContents());
99 99
 
100
-            if (! isset($timer->taskTime) || $timer->status !== 'stopped') {
100
+            if (!isset($timer->taskTime) || $timer->status !== 'stopped') {
101 101
                 return false;
102 102
             }
103 103
         } catch (\Exception $e) {
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
 
115 115
             $timer = json_decode($response->getBody()->getContents());
116 116
 
117
-            if (! isset($timer->duration) || $timer->status !== 'active') {
117
+            if (!isset($timer->duration) || $timer->status !== 'active') {
118 118
                 return false;
119 119
             }
120 120
         } catch (\Exception $e) {
Please login to merge, or discard this patch.