Completed
Pull Request — 1.5 (#861)
by Rafał
12:38 queued 10s
created
src/SWP/Bundle/CoreBundle/Factory/ApiKeyFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
      * @param UserInterface $user
39 39
      * @param string|null   $apiKeyValue
40 40
      *
41
-     * @return mixed
41
+     * @return ApiKeyInterface
42 42
      */
43 43
     public function create($user, $apiKeyValue = null)
44 44
     {
Please login to merge, or discard this patch.
src/SWP/Bundle/CoreBundle/Controller/ThemesController.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@
 block discarded – undo
85 85
         $currentTheme = $tenant->getThemeName();
86 86
         $themes = array_filter(
87 87
             $this->get('sylius.repository.theme')->findAll(),
88
-            function ($element) use (&$tenantCode, $currentTheme) {
88
+            function($element) use (&$tenantCode, $currentTheme) {
89 89
                 if (strpos($element->getName(), ThemeHelper::SUFFIX_SEPARATOR.$tenantCode)) {
90 90
                     return true;
91 91
                 }
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,6 @@
 block discarded – undo
17 17
 use Knp\Component\Pager\Pagination\SlidingPagination;
18 18
 use SWP\Bundle\CoreBundle\Form\Type\ThemeInstallType;
19 19
 use SWP\Bundle\CoreBundle\Form\Type\ThemeUploadType;
20
-use SWP\Bundle\CoreBundle\Model\Tenant;
21 20
 use SWP\Bundle\CoreBundle\Model\TenantInterface;
22 21
 use SWP\Bundle\CoreBundle\Theme\Helper\ThemeHelper;
23 22
 use SWP\Component\Common\Response\ResponseContext;
Please login to merge, or discard this patch.
src/SWP/Bundle/CoreBundle/Theme/Generator/ThemeContainersGenerator.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@
 block discarded – undo
77 77
     /**
78 78
      * @param array $containerData
79 79
      *
80
-     * @return mixed
80
+     * @return null|\SWP\Component\TemplatesSystem\Gimme\Model\ContainerInterface
81 81
      *
82 82
      * @throws \Exception
83 83
      */
Please login to merge, or discard this patch.
src/SWP/Bundle/ContentBundle/Provider/ORM/RouteProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -196,7 +196,7 @@
 block discarded – undo
196 196
      */
197 197
     private function getArrayOfIdsFromRoutesArray(array $routes): array
198 198
     {
199
-        return array_map(function ($route) {
199
+        return array_map(function($route) {
200 200
             return $route->getId();
201 201
         }, $routes);
202 202
     }
Please login to merge, or discard this patch.
src/SWP/Bundle/CoreBundle/Theme/Model/ThemeInterface.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -21,6 +21,7 @@  discard block
 block discarded – undo
21 21
 {
22 22
     /**
23 23
      * @param string $name
24
+     * @return void
24 25
      */
25 26
     public function setName($name);
26 27
 
@@ -61,6 +62,7 @@  discard block
 block discarded – undo
61 62
 
62 63
     /**
63 64
      * @param array $settings
65
+     * @return void
64 66
      */
65 67
     public function setSettings(array $settings): void;
66 68
 
@@ -71,6 +73,7 @@  discard block
 block discarded – undo
71 73
 
72 74
     /**
73 75
      * @param \SplFileInfo|null $file
76
+     * @return void
74 77
      */
75 78
     public function setLogo(?\SplFileInfo $file): void;
76 79
 
@@ -86,6 +89,7 @@  discard block
 block discarded – undo
86 89
 
87 90
     /**
88 91
      * @param string|null $path
92
+     * @return void
89 93
      */
90 94
     public function setLogoPath(?string $path): void;
91 95
 }
Please login to merge, or discard this patch.
src/SWP/Bundle/CoreBundle/Theme/Configuration/ThemeConfiguration.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
         $routeNodeDefinition = $routesNodeDefinition->prototype('array');
143 143
         $routeNodeDefinition
144 144
             ->validate()
145
-            ->ifTrue(function ($route) {
145
+            ->ifTrue(function($route) {
146 146
                 return [] === $route;
147 147
             })
148 148
             ->thenInvalid('Route cannot be empty!')
@@ -170,7 +170,7 @@  discard block
 block discarded – undo
170 170
         $menuNodeDefinition = $menusNodeDefinition->prototype('array');
171 171
         $menuNodeDefinition
172 172
             ->validate()
173
-            ->ifTrue(function ($menu) {
173
+            ->ifTrue(function($menu) {
174 174
                 return [] === $menu;
175 175
             })
176 176
             ->thenInvalid('Menu cannot be empty!')
@@ -188,7 +188,7 @@  discard block
 block discarded – undo
188 188
         $childrenNodeDefinition = $childrensNodeDefinition->prototype('array');
189 189
         $childrenNodeDefinition
190 190
             ->validate()
191
-            ->ifTrue(function ($menu) {
191
+            ->ifTrue(function($menu) {
192 192
                 return [] === $menu;
193 193
             })
194 194
             ->thenInvalid('Menu cannot be empty!')
@@ -206,7 +206,7 @@  discard block
 block discarded – undo
206 206
         $childrensChildrenNodeDefinition = $childrensChildrensNodeDefinition->prototype('array');
207 207
         $childrensChildrenNodeDefinition
208 208
             ->validate()
209
-            ->ifTrue(function ($menu) {
209
+            ->ifTrue(function($menu) {
210 210
                 return [] === $menu;
211 211
             })
212 212
             ->thenInvalid('Menu cannot be empty!')
@@ -231,7 +231,7 @@  discard block
 block discarded – undo
231 231
         $containerNodeDefinition = $containersNodeDefinition->prototype('array');
232 232
         $containerNodeDefinition
233 233
             ->validate()
234
-            ->ifTrue(function ($widget) {
234
+            ->ifTrue(function($widget) {
235 235
                 return [] === $widget;
236 236
             })
237 237
             ->thenInvalid('Widget cannot be empty!')
@@ -254,7 +254,7 @@  discard block
 block discarded – undo
254 254
         $containerNodeDefinition = $containersNodeDefinition->prototype('array');
255 255
         $containerNodeDefinition
256 256
             ->validate()
257
-            ->ifTrue(function ($widget) {
257
+            ->ifTrue(function($widget) {
258 258
                 return [] === $widget;
259 259
             })
260 260
             ->thenInvalid('Content List cannot be empty!')
@@ -278,7 +278,7 @@  discard block
 block discarded – undo
278 278
         $widgetNodeDefinition = $widgetsNodeDefinition->prototype('array');
279 279
         $widgetNodeDefinition
280 280
             ->validate()
281
-            ->ifTrue(function ($widget) {
281
+            ->ifTrue(function($widget) {
282 282
                 return [] === $widget;
283 283
             })
284 284
             ->thenInvalid('Widget cannot be empty!')
@@ -308,7 +308,7 @@  discard block
 block discarded – undo
308 308
 
309 309
         $screenshotNodeDefinition
310 310
             ->validate()
311
-            ->ifTrue(function ($screenshot) {
311
+            ->ifTrue(function($screenshot) {
312 312
                 return [] === $screenshot || ['path' => ''] === $screenshot;
313 313
             })
314 314
             ->thenInvalid('Screenshot cannot be empty!')
@@ -316,7 +316,7 @@  discard block
 block discarded – undo
316 316
         $screenshotNodeDefinition
317 317
             ->beforeNormalization()
318 318
             ->ifString()
319
-            ->then(function ($value) {
319
+            ->then(function($value) {
320 320
                 return ['path' => $value];
321 321
             })
322 322
         ;
@@ -342,7 +342,7 @@  discard block
 block discarded – undo
342 342
         $authorNodeDefinition = $authorsNodeDefinition->prototype('array');
343 343
         $authorNodeDefinition
344 344
             ->validate()
345
-            ->ifTrue(function ($author) {
345
+            ->ifTrue(function($author) {
346 346
                 return [] === $author;
347 347
             })
348 348
             ->thenInvalid('Author cannot be empty!')
@@ -370,7 +370,7 @@  discard block
 block discarded – undo
370 370
         $settingNodeDefinition = $settingsNodeDefinition->prototype('array');
371 371
         $settingNodeDefinition
372 372
             ->validate()
373
-            ->ifTrue(function ($setting) {
373
+            ->ifTrue(function($setting) {
374 374
                 return [] === $setting;
375 375
             })
376 376
             ->thenInvalid('Setting cannot be empty!')
Please login to merge, or discard this patch.
src/SWP/Bundle/CoreBundle/Twig/StringyExtension.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
         $this->initialized = true;
89 89
         $stringyClass = new \ReflectionClass('Stringy\Stringy');
90 90
         $methods = $stringyClass->getMethods(\ReflectionMethod::IS_PUBLIC);
91
-        $names = array_map(function ($value) {
91
+        $names = array_map(function($value) {
92 92
             return $value->getName();
93 93
         }, $methods);
94 94
 
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
                 if (array_key_exists($name, $this->environment->getFunctions())) {
106 106
                     continue;
107 107
                 }
108
-                $this->functions[$name] = new \Twig_SimpleFunction($name, function () use ($name) {
108
+                $this->functions[$name] = new \Twig_SimpleFunction($name, function() use ($name) {
109 109
                     return call_user_func_array(['Stringy\StaticStringy', $name], func_get_args());
110 110
                 });
111 111
             } else {
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
                 if (array_key_exists($name, $this->environment->getFilters())) {
114 114
                     continue;
115 115
                 }
116
-                $this->filters[$name] = new \Twig_SimpleFilter($name, function () use ($name) {
116
+                $this->filters[$name] = new \Twig_SimpleFilter($name, function() use ($name) {
117 117
                     return (string) call_user_func_array(['Stringy\StaticStringy', $name], func_get_args());
118 118
                 });
119 119
             }
Please login to merge, or discard this patch.
src/SWP/Bundle/CoreBundle/Widget/TemplateWidgetHandler.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
     public const TEMPLATE_NAME = 'template_name';
24 24
 
25 25
     protected static $expectedParameters = [
26
-         self::TEMPLATE_NAME => [
26
+            self::TEMPLATE_NAME => [
27 27
             'type' => 'string',
28 28
         ],
29 29
     ];
Please login to merge, or discard this patch.
src/SWP/Bundle/OutputChannelBundle/Form/Type/OutputChannelType.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
             ])
29 29
         ;
30 30
 
31
-        $formModifier = function (FormInterface $form, ?string $type) {
31
+        $formModifier = function(FormInterface $form, ?string $type) {
32 32
             if (OutputChannelInterface::TYPE_WORDPRESS === $type) {
33 33
                 $form->add('config', WordpressOutputChannelConfigType::class);
34 34
             }
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
 
37 37
         $builder->addEventListener(
38 38
             FormEvents::POST_SET_DATA,
39
-            function (FormEvent $event) use ($formModifier) {
39
+            function(FormEvent $event) use ($formModifier) {
40 40
                 $data = $event->getData();
41 41
                 if (null !== $event->getData()) {
42 42
                     $formModifier($event->getForm(), $data->getType());
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
 
47 47
         $builder->get('type')->addEventListener(
48 48
             FormEvents::POST_SUBMIT,
49
-            function (FormEvent $event) use ($formModifier) {
49
+            function(FormEvent $event) use ($formModifier) {
50 50
                 $type = $event->getForm()->getData();
51 51
 
52 52
                 $formModifier($event->getForm()->getParent(), $type);
Please login to merge, or discard this patch.