Completed
Push — master ( b13840...70afb1 )
by Paweł
56:44
created
src/SWP/Bundle/CoreBundle/Form/Type/OrganizationCodeChoiceType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
     public function configureOptions(OptionsResolver $resolver)
41 41
     {
42 42
         $resolver
43
-            ->setNormalizer('choices', function () {
43
+            ->setNormalizer('choices', function() {
44 44
                 /** @var ThemeInterface[] $themes */
45 45
                 $themes = $this->themeProvider->getCurrentTenantAvailableThemes();
46 46
                 $choices = [];
Please login to merge, or discard this patch.
src/SWP/Bundle/CoreBundle/Theme/Configuration/ThemeConfiguration.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
 
132 132
         $screenshotNodeDefinition
133 133
             ->validate()
134
-            ->ifTrue(function ($screenshot) {
134
+            ->ifTrue(function($screenshot) {
135 135
                 return [] === $screenshot || ['path' => ''] === $screenshot;
136 136
             })
137 137
             ->thenInvalid('Screenshot cannot be empty!')
@@ -139,7 +139,7 @@  discard block
 block discarded – undo
139 139
         $screenshotNodeDefinition
140 140
             ->beforeNormalization()
141 141
             ->ifString()
142
-            ->then(function ($value) {
142
+            ->then(function($value) {
143 143
                 return ['path' => $value];
144 144
             })
145 145
         ;
@@ -165,7 +165,7 @@  discard block
 block discarded – undo
165 165
         $authorNodeDefinition = $authorsNodeDefinition->prototype('array');
166 166
         $authorNodeDefinition
167 167
             ->validate()
168
-            ->ifTrue(function ($author) {
168
+            ->ifTrue(function($author) {
169 169
                 return [] === $author;
170 170
             })
171 171
             ->thenInvalid('Author cannot be empty!')
Please login to merge, or discard this patch.
src/SWP/Bundle/TemplateEngineBundle/EventSubscriber/HttpCacheSubscriber.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
             HttpCacheEvent::EVENT_NAME => [
40 40
                 ['clearCache', 0],
41 41
             ],
42
-       ];
42
+        ];
43 43
     }
44 44
 
45 45
     public function clearCache(HttpCacheEvent $event)
Please login to merge, or discard this patch.