Completed
Push — master ( e5c087...d745d0 )
by Kamil
11:36
created
src/Promise/Promise.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -378,13 +378,13 @@
 block discarded – undo
378 378
         try
379 379
         {
380 380
             $resolver(
381
-                function ($value = null) {
381
+                function($value = null) {
382 382
                     $this->resolve($value);
383 383
                 },
384
-                function ($reason = null) {
384
+                function($reason = null) {
385 385
                     $this->reject($reason);
386 386
                 },
387
-                function ($reason = null) {
387
+                function($reason = null) {
388 388
                     $this->cancel($reason);
389 389
                 }
390 390
             );
Please login to merge, or discard this patch.