Completed
Push — master ( 47bfe2...4c5473 )
by Andrey
02:03
created
tests/EventTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
 
45 45
     public function testSetAndGetEventTarget()
46 46
     {
47
-        $target = (object) function () {
47
+        $target = (object) function() {
48 48
         };
49 49
 
50 50
         $this->event->setTarget($target);
Please login to merge, or discard this patch.
tests/EventTestSuite.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
     {
17 17
         $this->eventManager = new EventManager;
18 18
         $this->event = new Event('some.event', [], 'someTarget', true);
19
-        $this->eventListener = function () {
19
+        $this->eventListener = function() {
20 20
             return true;
21 21
         };
22 22
     }
Please login to merge, or discard this patch.