Completed
Push — master ( 3ba758...b5e37b )
by Liaw
02:27
created
src/LightSaml/Action/Profile/Inbound/Response/DecryptAssertionsAction.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@
 block discarded – undo
70 70
             throw new LightSamlContextException($context, $message);
71 71
         }
72 72
         $this->logger->info('Trusted decryption candidates', LogHelper::getActionContext($context, $this, [
73
-            'credentials' => array_map(function (CredentialInterface $credential) {
73
+            'credentials' => array_map(function(CredentialInterface $credential) {
74 74
                 return sprintf(
75 75
                     "Entity: '%s'; PK X509 Thumb: '%s'",
76 76
                     $credential->getEntityId(),
Please login to merge, or discard this patch.
LightSaml/Tests/Functional/Binding/HttpRedirectBindingFunctionalTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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();
Please login to merge, or discard this patch.
tests/LightSaml/Tests/Functional/Binding/HttpPostBindingFunctionalTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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();
Please login to merge, or discard this patch.