Passed
Push — main ( 2c998d...d5afb4 )
by Gaetano
08:40
created
Core/Matcher/ContentMatcher.php 1 patch
Braces   +12 added lines, -4 removed lines patch added patch discarded remove patch
@@ -145,7 +145,9 @@  discard block
 block discarded – undo
145 145
                     // q: when getting a query via QueryType, should we always inject offset/limit?
146 146
                     $query->limit = $limit != 0 ? $limit : $this->queryLimit;
147 147
                     $query->offset = $offset;
148
-                    if (isset($query->performCount)) $query->performCount = false;
148
+                    if (isset($query->performCount)) {
149
+                        $query->performCount = false;
150
+                    }
149 151
                     if (!empty($sort)) {
150 152
                         $query->sortClauses = $this->getSortClauses($sort);
151 153
                     } else {
@@ -271,7 +273,9 @@  discard block
 block discarded – undo
271 273
     {
272 274
         $query = new Query();
273 275
         $query->limit = $this->queryLimit;
274
-        if (isset($query->performCount)) $query->performCount = false;
276
+        if (isset($query->performCount)) {
277
+            $query->performCount = false;
278
+        }
275 279
         $query->filter = new Query\Criterion\ParentLocationId($parentLocationIds);
276 280
         $results = $this->getSearchService()->findContent($query);
277 281
 
@@ -311,7 +315,9 @@  discard block
 block discarded – undo
311 315
     {
312 316
         $query = new Query();
313 317
         $query->limit = $this->queryLimit;
314
-        if (isset($query->performCount)) $query->performCount = false;
318
+        if (isset($query->performCount)) {
319
+            $query->performCount = false;
320
+        }
315 321
         $query->filter = new Query\Criterion\ContentTypeIdentifier($contentTypeIdentifiers);
316 322
         // sort objects by depth, lower to higher, so that deleting them has less chances of failure
317 323
         // NB: we only do this in eZP versions that allow depth sorting on content queries
@@ -339,7 +345,9 @@  discard block
 block discarded – undo
339 345
     {
340 346
         $query = new Query();
341 347
         $query->limit = $this->queryLimit;
342
-        if (isset($query->performCount)) $query->performCount = false;
348
+        if (isset($query->performCount)) {
349
+            $query->performCount = false;
350
+        }
343 351
         $query->filter = new Query\Criterion\ContentTypeId($contentTypeIds);
344 352
         // sort objects by depth, lower to higher, so that deleting them has less chances of failure
345 353
         // NB: we only do this in eZP versions that allow depth sorting on content queries
Please login to merge, or discard this patch.
Core/Matcher/LocationMatcher.php 1 patch
Braces   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -107,7 +107,9 @@  discard block
 block discarded – undo
107 107
             if (!empty($sort)) {
108 108
                 $query->sortClauses = $this->getSortClauses($sort);
109 109
             }
110
-            if (isset($query->performCount)) $query->performCount = false;
110
+            if (isset($query->performCount)) {
111
+                $query->performCount = false;
112
+            }
111 113
 
112 114
             $results = $this->getSearchService()->findLocations($query);
113 115
 
@@ -254,7 +256,9 @@  discard block
 block discarded – undo
254 256
     {
255 257
         $query = new LocationQuery();
256 258
         $query->limit = self::INT_MAX_16BIT;
257
-        if (isset($query->performCount)) $query->performCount = false;
259
+        if (isset($query->performCount)) {
260
+            $query->performCount = false;
261
+        }
258 262
         $query->filter = new Query\Criterion\ParentLocationId($parentLocationIds);
259 263
 
260 264
         $results = $this->getSearchService()->findLocations($query);
Please login to merge, or discard this patch.
Core/FieldHandler/FileFieldHandler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
     protected $ioDecorator;
11 11
     protected $ioService;
12 12
 
13
-    public function __construct($ioRootDir, UrlDecorator $ioDecorator=null, $ioService=null)
13
+    public function __construct($ioRootDir, UrlDecorator $ioDecorator = null, $ioService = null)
14 14
     {
15 15
         $this->ioRootDir = $ioRootDir;
16 16
         $this->ioDecorator = $ioDecorator;
Please login to merge, or discard this patch.
Core/Loader/Filesystem.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -120,6 +120,6 @@
 block discarded – undo
120 120
     {
121 121
         $rootDir = realpath($this->kernel->getRootDir() . '/..') . '/';
122 122
         // note: we handle the case of 'path = root dir', but path is expected to include a filename...
123
-        return $path === $rootDir ? './' : preg_replace('#^' . preg_quote($rootDir, '#'). '#', '', $path);
123
+        return $path === $rootDir ? './' : preg_replace('#^' . preg_quote($rootDir, '#') . '#', '', $path);
124 124
     }
125 125
 }
Please login to merge, or discard this patch.
Core/ReferenceResolver/ExpressionResolver.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -45,12 +45,12 @@
 block discarded – undo
45 45
         return array(
46 46
             new ExpressionFunction(
47 47
                 'resolve',
48
-                function ($str) {
48
+                function($str) {
49 49
                     /// @todo we could implement this via eg a static class var which holds a pointer to $this->referenceResolver
50 50
                     //return sprintf('(is_string(%1$s) ? FakerResolver::resolveExpressionLanguageReference(%1$s) : %1$s)', $str);
51 51
                     return "throw new MigrationBundleException('The \'resolve\' expression language operator can not be compiled, only evaluated'";
52 52
                 },
53
-                function ($arguments, $str) use ($resolver) {
53
+                function($arguments, $str) use ($resolver) {
54 54
                     if (!is_string($str)) {
55 55
                         return $str;
56 56
                     }
Please login to merge, or discard this patch.
Core/ReferenceResolver/ChainResolver.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -132,7 +132,7 @@
 block discarded – undo
132 132
         $refs = array();
133 133
 
134 134
         foreach ($this->resolvers as $resolver) {
135
-            if (! $resolver instanceof EnumerableReferenceResolverInterface) {
135
+            if (!$resolver instanceof EnumerableReferenceResolverInterface) {
136 136
                 // Disabled - we now allow chaining enumerable and non-enumerable sets
137 137
                 //throw new MigrationBundleException("Could not enumerate references because of chained resolver of type: " . get_class($resolver));
138 138
                 continue;
Please login to merge, or discard this patch.
Core/Loader/FilesystemRecursive.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -61,8 +61,7 @@
 block discarded – undo
61 61
                         }
62 62
                     }
63 63
                 }
64
-            }
65
-            else {
64
+            } else {
66 65
                 throw new MigrationBundleException("Path '$path' is neither a file nor directory");
67 66
             }
68 67
         }
Please login to merge, or discard this patch.
Core/FieldHandler/EzRichText.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
 {
12 12
     public function setReferenceResolver(ReferenceResolverInterface $referenceResolver)
13 13
     {
14
-        if (! $referenceResolver instanceof EmbeddedReferenceResolverInterface) {
14
+        if (!$referenceResolver instanceof EmbeddedReferenceResolverInterface) {
15 15
             throw new MigrationBundleException("Reference resolver injected into EzRichText field handler should implement EmbeddedReferenceResolverInterface");
16 16
         }
17 17
         parent::setReferenceResolver($referenceResolver);
Please login to merge, or discard this patch.
Core/FieldHandler/EzXmlText.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
 {
13 13
     public function setReferenceResolver(ReferenceResolverInterface $referenceResolver)
14 14
     {
15
-        if (! $referenceResolver instanceof EmbeddedReferenceResolverInterface) {
15
+        if (!$referenceResolver instanceof EmbeddedReferenceResolverInterface) {
16 16
             throw new MigrationBundleException("Reference resolver injected into EzXmlText field handler should implement EmbeddedReferenceResolverInterface");
17 17
         }
18 18
         parent::setReferenceResolver($referenceResolver);
Please login to merge, or discard this patch.