Completed
Push — master ( 5acd62...3b66b5 )
by Ivo
03:14
created
Twig/ContentEditableTokenParser.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
         $stream->next();
61 61
 
62 62
         $body = $this->parser->subparse(
63
-            function (\Twig_Token $token) {
63
+            function(\Twig_Token $token) {
64 64
                 return $token->test(['endcontenteditable']);
65 65
             },
66 66
             true
Please login to merge, or discard this patch.
Tests/Manager/ContentManagerTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
             ->method('persist')
128 128
             ->with(
129 129
                 $this->callback(
130
-                    function ($value) use ($expectedContent) {
130
+                    function($value) use ($expectedContent) {
131 131
                         return $value == $expectedContent;
132 132
                     }
133 133
                 )
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
             ->method('flush')
138 138
             ->with(
139 139
                 $this->callback(
140
-                    function ($value) use ($expectedContent) {
140
+                    function($value) use ($expectedContent) {
141 141
                         return $value == $expectedContent;
142 142
                     }
143 143
                 )
@@ -200,7 +200,7 @@  discard block
 block discarded – undo
200 200
             ->method('detach')
201 201
             ->with(
202 202
                 $this->callback(
203
-                    function ($value) use ($content) {
203
+                    function($value) use ($content) {
204 204
                         return $value == $content;
205 205
                     }
206 206
                 )
Please login to merge, or discard this patch.