@@ -96,7 +96,7 @@ |
||
96 | 96 | ); |
97 | 97 | $query = $queryBuilder->getQuery(); |
98 | 98 | $queryResult = $query->getResult(); |
99 | - if (! $queryResult) { |
|
99 | + if (!$queryResult) { |
|
100 | 100 | return true; |
101 | 101 | } |
102 | 102 | $timeOfLastFiredUpTrigger = $queryResult[0]['created']; |
@@ -91,7 +91,7 @@ discard block |
||
91 | 91 | */ |
92 | 92 | private function checkIsComparatorValid() |
93 | 93 | { |
94 | - if (! $this->comparator) { |
|
94 | + if (!$this->comparator) { |
|
95 | 95 | throw new \Exception('Comparator invalid'); |
96 | 96 | } |
97 | 97 | } |
@@ -106,7 +106,7 @@ discard block |
||
106 | 106 | */ |
107 | 107 | private function fireTrigger(Trigger $trigger, array $serverData, $msDelay) |
108 | 108 | { |
109 | - if (! $this->notificationMgr->hasNotificationDelayExpired( |
|
109 | + if (!$this->notificationMgr->hasNotificationDelayExpired( |
|
110 | 110 | $trigger->getId(), |
111 | 111 | $serverData['server_id'], |
112 | 112 | $msDelay |