Completed
Push — master ( 44a29b...c92d33 )
by Kamil
03:15
created
src/Event/BaseEventEmitterTrait.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -159,7 +159,7 @@
 block discarded – undo
159 159
     public function delayTimes($event, $ticks, $limit, callable $listener)
160 160
     {
161 161
         $counter = 0;
162
-        return $this->times($event, $ticks+$limit-1, function(...$args) use(&$counter, $event, $ticks, $listener) {
162
+        return $this->times($event, $ticks + $limit - 1, function(...$args) use(&$counter, $event, $ticks, $listener) {
163 163
             if (++$counter >= $ticks)
164 164
             {
165 165
                 $listener(...$args);
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,8 @@
 block discarded – undo
28 28
      *
29 29
      */
30 30
     public function __construct()
31
-    {}
31
+    {
32
+}
32 33
 
33 34
     /**
34 35
      *
Please login to merge, or discard this patch.