Completed
Push — 1.0 ( 046da8...d5bf3f )
by Paweł
07:50
created
src/SWP/Component/TemplatesSystem/Twig/Extension/GimmeExtension.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -49,17 +49,17 @@
 block discarded – undo
49 49
     public function getFilters()
50 50
     {
51 51
         return [
52
-            new \Twig_SimpleFilter('start', function ($context, $node, $value) {
52
+            new \Twig_SimpleFilter('start', function($context, $node, $value) {
53 53
                 $node['_collection_type_filters']['start'] = $value;
54 54
 
55 55
                 return $node;
56 56
             }, ['needs_context' => true]),
57
-            new \Twig_SimpleFilter('limit', function ($context, $node, $value) {
57
+            new \Twig_SimpleFilter('limit', function($context, $node, $value) {
58 58
                 $node['_collection_type_filters']['limit'] = $value;
59 59
 
60 60
                 return $node;
61 61
             }, ['needs_context' => true]),
62
-            new \Twig_SimpleFilter('order', function ($context, $node, $value1, $value2) {
62
+            new \Twig_SimpleFilter('order', function($context, $node, $value1, $value2) {
63 63
                 $node['_collection_type_filters']['order'] = [$value1, $value2];
64 64
 
65 65
                 return $node;
Please login to merge, or discard this patch.
src/SWP/Bundle/MultiTenancyBundle/DependencyInjection/Configuration.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,8 +46,8 @@
 block discarded – undo
46 46
                 ->end()
47 47
                 ->arrayNode('persistence')
48 48
                     ->validate()
49
-                    ->ifTrue(function ($v) {
50
-                        return count(array_filter($v, function ($persistence) {
49
+                    ->ifTrue(function($v) {
50
+                        return count(array_filter($v, function($persistence) {
51 51
                             return $persistence['enabled'];
52 52
                         })) > 1;
53 53
                     })
Please login to merge, or discard this patch.
src/SWP/Bundle/CoreBundle/Form/Type/OrganizationCodeChoiceType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
     public function configureOptions(OptionsResolver $resolver)
51 51
     {
52 52
         $resolver
53
-            ->setNormalizer('choices', function () {
53
+            ->setNormalizer('choices', function() {
54 54
                 /** @var OrganizationInterface[] $organizations */
55 55
                 $organizations = $this->organizationRepository->findAvailable();
56 56
                 $choices = [];
Please login to merge, or discard this patch.
src/SWP/Bundle/CoreBundle/Form/Type/ThemeNameChoiceType.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/MultiTenancyBundle/Command/CreateOrganizationCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -100,7 +100,7 @@
 block discarded – undo
100 100
 
101 101
         if (!$input->getArgument($name) && !$default) {
102 102
             $question = new Question(sprintf('<question>Please enter %s:</question>', $name));
103
-            $question->setValidator(function ($argument) use ($name) {
103
+            $question->setValidator(function($argument) use ($name) {
104 104
                 if (empty($argument)) {
105 105
                     throw new \RuntimeException(sprintf('The %s can not be empty', $name));
106 106
                 }
Please login to merge, or discard this patch.
src/SWP/Bundle/CoreBundle/Command/ThemeGenerateCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -115,7 +115,7 @@
 block discarded – undo
115 115
 
116 116
             $tenant = reset($tenants);
117 117
             if ($numTenants > 1) {
118
-                $tenantNames = array_map(function ($tenant) {
118
+                $tenantNames = array_map(function($tenant) {
119 119
                     return $tenant->getName();
120 120
                 }, $tenants);
121 121
 
Please login to merge, or discard this patch.
src/SWP/Bundle/CoreBundle/Theme/Model/ThemeInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -20,6 +20,7 @@
 block discarded – undo
20 20
 {
21 21
     /**
22 22
      * @param string $name
23
+     * @return void
23 24
      */
24 25
     public function setName($name);
25 26
 
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/ContentBundle/Form/Type/RouteType.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -91,10 +91,10 @@
 block discarded – undo
91 91
 
92 92
         $builder->get('cacheTimeInSeconds')
93 93
             ->addModelTransformer(new CallbackTransformer(
94
-                function ($value) {
94
+                function($value) {
95 95
                     return $value;
96 96
                 },
97
-                function ($value) {
97
+                function($value) {
98 98
                     return (int) $value;
99 99
                 }
100 100
             ))
Please login to merge, or discard this patch.