@@ -80,7 +80,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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) { |