Test Setup Failed
Branch master (946251)
by Mariano
01:52
created
tests/Middleware/CorrelationIdTest.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -135,7 +135,7 @@
 block discarded – undo
135 135
     {
136 136
         // Arrange
137 137
         $dummy = (object) [
138
-           'foo' => null
138
+            'foo' => null
139 139
         ];
140 140
         $this->callback = function (Model\CorrelationId $correlationid) use ($dummy) {
141 141
             $dummy->foo = $correlationid->get();
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
      */
49 49
     private function getFakeNextCallable()
50 50
     {
51
-        return function (Message\RequestInterface $request, Message\ResponseInterface $response) {
51
+        return function(Message\RequestInterface $request, Message\ResponseInterface $response) {
52 52
             return $response;
53 53
         };
54 54
     }
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
         $dummy = (object) [
138 138
            'foo' => null
139 139
         ];
140
-        $this->callback = function (Model\CorrelationId $correlationid) use ($dummy) {
140
+        $this->callback = function(Model\CorrelationId $correlationid) use ($dummy) {
141 141
             $dummy->foo = $correlationid->get();
142 142
         };
143 143
         
Please login to merge, or discard this patch.
examples/03-with-custom-callable.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
 $dummyObject = (object) [
14 14
         'correlationIdObject' => null
15 15
 ];
16
-$customCallable = function (Model\CorrelationId $correlationid) use ($dummyObject) {
16
+$customCallable = function(Model\CorrelationId $correlationid) use ($dummyObject) {
17 17
     $dummyObject->correlationIdObject = $correlationid;
18 18
 };
19 19
 
Please login to merge, or discard this patch.