Completed
Push — master ( f2565d...7a069b )
by Paweł
13s
created
src/SWP/Bundle/ContentBundle/Service/ArticleSourcesAdderInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace SWP\Bundle\ContentBundle\Service;
6 6
 
Please login to merge, or discard this patch.
src/SWP/Bundle/ContentBundle/Processor/ArticleBodyProcessor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /*
6 6
  * This file is part of the Superdesk Web Publisher Content Bundle.
Please login to merge, or discard this patch.
src/SWP/Bundle/CoreBundle/Widget/LiveblogWidgetHandler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /*
6 6
  * This file is part of the Superdesk Web Publisher Core Bundle.
Please login to merge, or discard this patch.
src/SWP/Bundle/CoreBundle/Form/Type/PackageType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /*
6 6
  * This file is part of the Superdesk Web Publisher Core Bundle.
Please login to merge, or discard this patch.
Bundle/CoreBundle/Request/ParamConverter/ResolveEntityParamConverter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /*
6 6
  * This file is part of the Superdesk Web Publisher Core Bundle.
Please login to merge, or discard this patch.
src/SWP/Bundle/CoreBundle/EventListener/PreviewModeListener.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /*
6 6
  * This file is part of the Superdesk Web Publisher Core Bundle.
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 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/Service/TenantAwareArticleSourcesAdder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /*
6 6
  * This file is part of the Superdesk Web Publisher Core Bundle.
Please login to merge, or discard this patch.
CoreBundle/DependencyInjection/Compiler/OverrideArticleSourceAdderPass.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /*
6 6
  * This file is part of the Superdesk Web Publisher Core Bundle.
Please login to merge, or discard this patch.