@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | $eventDispatcherMock = $this->getEventDispatcherMock(); |
33 | 33 | $eventDispatcherMock->expects($this->once()) |
34 | 34 | ->method('dispatch') |
35 | - ->willReturnCallback(function (GenericEvent $event, $name) { |
|
35 | + ->willReturnCallback(function(GenericEvent $event, $name) { |
|
36 | 36 | $this->assertEquals(Events::BINDING_MESSAGE_SENT, $name); |
37 | 37 | $this->assertNotEmpty($event->getSubject()); |
38 | 38 | $doc = new \DOMDocument(); |
@@ -123,7 +123,7 @@ discard block |
||
123 | 123 | $eventDispatcherMock = $this->getEventDispatcherMock(); |
124 | 124 | $eventDispatcherMock->expects($this->once()) |
125 | 125 | ->method('dispatch') |
126 | - ->willReturnCallback(function (GenericEvent $event, $name) { |
|
126 | + ->willReturnCallback(function(GenericEvent $event, $name) { |
|
127 | 127 | $this->assertEquals(Events::BINDING_MESSAGE_RECEIVED, $name); |
128 | 128 | $this->assertNotEmpty($event->getSubject()); |
129 | 129 | $doc = new \DOMDocument(); |