Completed
Push — master ( d5f3e2...f413dd )
by Ivo
02:47
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/EntityManager/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.
EventListener/EditorResponseListener.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -54,8 +54,7 @@
 block discarded – undo
54 54
             if (!$this->authorizationChecker->isGranted('ROLE_ADMIN')) {
55 55
                 return;
56 56
             }
57
-        }
58
-        catch (AuthenticationCredentialsNotFoundException $e) {
57
+        } catch (AuthenticationCredentialsNotFoundException $e) {
59 58
             return;
60 59
         }
61 60
 
Please login to merge, or discard this patch.
Tests/EventListener/EditorResponseListenerTest.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -165,7 +165,7 @@
 block discarded – undo
165 165
         $request = new Request();
166 166
         $response = new Response(
167 167
             '<body></body>',
168
-             200,
168
+                200,
169 169
             ['Content-Type' => 'text/html']
170 170
         );
171 171
 
Please login to merge, or discard this patch.