Passed
Push — master ( 4d383e...1242f9 )
by Bob
03:36
created
Dramiel.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -148,8 +148,9 @@
 block discarded – undo
148 148
         
149 149
         // Run the Tick plugins
150 150
         $ws->loop->addPeriodicTimer(1, function () use ($pluginsT) {
151
-            foreach ($pluginsT as $plugin)
152
-                $plugin->tick();
151
+            foreach ($pluginsT as $plugin) {
152
+                            $plugin->tick();
153
+            }
153 154
         });
154 155
 
155 156
         // Mem cleanup every 30 minutes
Please login to merge, or discard this patch.
src/plugins/onTick/notifications.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -141,7 +141,7 @@
 block discarded – undo
141 141
             $cached = $xml->cachedUntil[0];
142 142
             $baseUnix = strtotime($cached);
143 143
             $cacheClr = $baseUnix - 13500;
144
-            if (!isset($this->fuelChannel)){
144
+            if (!isset($this->fuelChannel)) {
145 145
                 $this->fuelChannel = $this->toDiscordChannel;
146 146
             }
147 147
             if ($cacheClr <= time()) {
Please login to merge, or discard this patch.