Test Setup Failed
Push — master ( f12304...3456fe )
by Craig
05:00
created
src/system/UsersModule/Form/DataTransformer/UserFieldTransformer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
             return $value->getUid();
57 57
         }
58 58
 
59
-        return (int) $value;
59
+        return (int)$value;
60 60
     }
61 61
 
62 62
     /**
Please login to merge, or discard this patch.
src/system/SearchModule/Entity/Repository/SearchResultRepository.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
 
41 41
         if ('' !== $sessionId) {
42 42
             $qb->where('tbl.sesid = :sid')
43
-               ->setParameter('sid', $sessionId);
43
+                ->setParameter('sid', $sessionId);
44 44
         }
45 45
 
46 46
         $query = $qb->getQuery();
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
             $i = 1;
64 64
             foreach ($filters as $w_key => $w_value) {
65 65
                 $qb->andWhere($qb->expr()->eq('tbl.' . $w_key, '?' . $i))
66
-                   ->setParameter($i, $w_value);
66
+                    ->setParameter($i, $w_value);
67 67
                 $i++;
68 68
             }
69 69
         }
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
 
100 100
         if ('' !== $sessionId) {
101 101
             $qb->orWhere('tbl.sesid = :sid')
102
-               ->setParameter('sid', $sessionId);
102
+                ->setParameter('sid', $sessionId);
103 103
         }
104 104
 
105 105
         $query = $qb->getQuery();
Please login to merge, or discard this patch.
Bundle/CoreInstallerBundle/EventListener/InstallUpgradeCheckListener.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
         $containsUpgrade = 'upgrade' === $routeInfo['_route'];
58 58
         $containsLogin = 'Zikula\\UsersModule\\Controller\\AccessController::loginAction' === $routeInfo['_controller'];
59 59
         $containsDoc = 'doc' === $routeInfo['_route'];
60
-        $containsWdt =  '_wdt' === $routeInfo['_route'];
60
+        $containsWdt = '_wdt' === $routeInfo['_route'];
61 61
         $containsProfiler = false !== mb_strpos($routeInfo['_route'], '_profiler');
62 62
         $containsRouter = 'fos_js_routing_js' === $routeInfo['_route'];
63 63
         $doNotRedirect = $containsProfiler || $containsWdt || $containsRouter || $request->isXmlHttpRequest();
Please login to merge, or discard this patch.
Zikula/Bundle/CoreBundle/Tests/Twig/TokenParser/SwitchTokenParserTest.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,8 +34,8 @@
 block discarded – undo
34 34
     {
35 35
         $this->tokenParser = new SwitchTokenParser();
36 36
         $this->twigParser = $this->getMockBuilder(Parser::class)
37
-             ->disableOriginalConstructor()
38
-             ->getMock();
37
+                ->disableOriginalConstructor()
38
+                ->getMock();
39 39
         $this->tokenParser->setParser($this->twigParser);
40 40
     }
41 41
 
Please login to merge, or discard this patch.
src/lib/Zikula/Bundle/CoreInstallerBundle/Stage/Install/CompleteStage.php 1 patch
Upper-Lower-Casing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -97,11 +97,11 @@
 block discarded – undo
97 97
     <title>${subject}</title>
98 98
 </head>
99 99
 <body>
100
-<h1>Hi ${uName}!</h1>
100
+<h1>Hi ${uname}!</h1>
101 101
 <p>Zikula has been successfully installed at <a href="${url}">${url}</a>. If you have further questions,
102 102
 visit <a href="https://ziku.la">ziku.la</a></p>
103 103
 </body>
104
-EOF;
104
+eof;
105 105
         $message = new Swift_Message($subject, $body, 'text/html');
106 106
         $message->setFrom($adminUser->getEmail());
107 107
         $message->setTo($adminUser->getEmail());
Please login to merge, or discard this patch.
src/lib/Zikula/Core/Doctrine/EntityAccess.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -140,6 +140,6 @@
 block discarded – undo
140 140
         }
141 141
 
142 142
         $class = get_class($this);
143
-        throw new RuntimeException("Entity \"${class}\" does not have a setter for property \"${name}\". Please add ${setMethod}().");
143
+        throw new RuntimeException("Entity \"${class}\" does not have a setter for property \"${name}\". Please add ${setmethod}().");
144 144
     }
145 145
 }
Please login to merge, or discard this patch.
src/system/RoutesModule/Entity/Repository/Base/AbstractRouteRepository.php 1 patch
Indentation   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -120,9 +120,9 @@  discard block
 block discarded – undo
120 120
     
121 121
         $qb = $this->getEntityManager()->createQueryBuilder();
122 122
         $qb->update($this->mainEntityClass, 'tbl')
123
-           ->set('tbl.createdBy', $newUserId)
124
-           ->where('tbl.createdBy = :creator')
125
-           ->setParameter('creator', $userId);
123
+            ->set('tbl.createdBy', $newUserId)
124
+            ->where('tbl.createdBy = :creator')
125
+            ->setParameter('creator', $userId);
126 126
         $query = $qb->getQuery();
127 127
         $query->execute();
128 128
     
@@ -148,9 +148,9 @@  discard block
 block discarded – undo
148 148
     
149 149
         $qb = $this->getEntityManager()->createQueryBuilder();
150 150
         $qb->update($this->mainEntityClass, 'tbl')
151
-           ->set('tbl.updatedBy', $newUserId)
152
-           ->where('tbl.updatedBy = :editor')
153
-           ->setParameter('editor', $userId);
151
+            ->set('tbl.updatedBy', $newUserId)
152
+            ->where('tbl.updatedBy = :editor')
153
+            ->setParameter('editor', $userId);
154 154
         $query = $qb->getQuery();
155 155
         $query->execute();
156 156
     
@@ -175,8 +175,8 @@  discard block
 block discarded – undo
175 175
     
176 176
         $qb = $this->getEntityManager()->createQueryBuilder();
177 177
         $qb->delete($this->mainEntityClass, 'tbl')
178
-           ->where('tbl.createdBy = :creator')
179
-           ->setParameter('creator', $userId);
178
+            ->where('tbl.createdBy = :creator')
179
+            ->setParameter('creator', $userId);
180 180
         $query = $qb->getQuery();
181 181
         $query->execute();
182 182
     
@@ -201,8 +201,8 @@  discard block
 block discarded – undo
201 201
     
202 202
         $qb = $this->getEntityManager()->createQueryBuilder();
203 203
         $qb->delete($this->mainEntityClass, 'tbl')
204
-           ->where('tbl.updatedBy = :editor')
205
-           ->setParameter('editor', $userId);
204
+            ->where('tbl.updatedBy = :editor')
205
+            ->setParameter('editor', $userId);
206 206
         $query = $qb->getQuery();
207 207
         $query->execute();
208 208
     
@@ -280,7 +280,7 @@  discard block
 block discarded – undo
280 280
     {
281 281
         if (0 < count($exclusions)) {
282 282
             $qb->andWhere('tbl.id NOT IN (:excludedIdentifiers)')
283
-               ->setParameter('excludedIdentifiers', $exclusions);
283
+                ->setParameter('excludedIdentifiers', $exclusions);
284 284
         }
285 285
     
286 286
         return $qb;
@@ -332,7 +332,7 @@  discard block
 block discarded – undo
332 332
         $offset = ($currentPage - 1) * $resultsPerPage;
333 333
     
334 334
         $query->setFirstResult($offset)
335
-              ->setMaxResults($resultsPerPage);
335
+                ->setMaxResults($resultsPerPage);
336 336
     
337 337
         return $query;
338 338
     }
@@ -404,7 +404,7 @@  discard block
 block discarded – undo
404 404
     
405 405
         $qb = $this->getEntityManager()->createQueryBuilder();
406 406
         $qb->select($selection)
407
-           ->from($this->mainEntityClass, 'tbl');
407
+            ->from($this->mainEntityClass, 'tbl');
408 408
     
409 409
         if (true === $useJoins) {
410 410
             $this->addJoinsToFrom($qb);
@@ -441,7 +441,7 @@  discard block
 block discarded – undo
441 441
     {
442 442
         $qb = $this->getCountQuery();
443 443
         $qb->andWhere('tbl.' . $fieldName . ' = :' . $fieldName)
444
-           ->setParameter($fieldName, $fieldValue);
444
+            ->setParameter($fieldName, $fieldValue);
445 445
     
446 446
         if ($excludeId > 0) {
447 447
             $qb = $this->addExclusion($qb, [$excludeId]);
@@ -477,7 +477,7 @@  discard block
 block discarded – undo
477 477
     
478 478
         $qb = $this->getEntityManager()->createQueryBuilder();
479 479
         $qb->select($selection)
480
-           ->from($this->mainEntityClass, 'tbl');
480
+            ->from($this->mainEntityClass, 'tbl');
481 481
     
482 482
         if (true === $useJoins) {
483 483
             $this->addJoinsToFrom($qb);
@@ -500,7 +500,7 @@  discard block
 block discarded – undo
500 500
         if ('RAND()' === $orderBy) {
501 501
             // random selection
502 502
             $qb->addSelect('MOD(tbl.id, ' . random_int(2, 15) . ') AS HIDDEN randomIdentifiers')
503
-               ->orderBy('randomIdentifiers');
503
+                ->orderBy('randomIdentifiers');
504 504
     
505 505
             return $qb;
506 506
         }
@@ -519,12 +519,12 @@  discard block
 block discarded – undo
519 519
         }
520 520
         if (false !== strpos($orderBy, 'tbl.createdBy')) {
521 521
             $qb->addSelect('tblCreator')
522
-               ->leftJoin('tbl.createdBy', 'tblCreator');
522
+                ->leftJoin('tbl.createdBy', 'tblCreator');
523 523
             $orderBy = str_replace('tbl.createdBy', 'tblCreator.uname', $orderBy);
524 524
         }
525 525
         if (false !== strpos($orderBy, 'tbl.updatedBy')) {
526 526
             $qb->addSelect('tblUpdater')
527
-               ->leftJoin('tbl.updatedBy', 'tblUpdater');
527
+                ->leftJoin('tbl.updatedBy', 'tblUpdater');
528 528
             $orderBy = str_replace('tbl.updatedBy', 'tblUpdater.uname', $orderBy);
529 529
         }
530 530
         $qb->add('orderBy', $orderBy);
Please login to merge, or discard this patch.
src/system/RoutesModule/Form/Handler/Common/Base/AbstractEditHandler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -267,7 +267,7 @@
 block discarded – undo
267 267
         // retrieve identifier of the object we wish to edit
268 268
         $routeParams = $request->get('_route_params', []);
269 269
         if (array_key_exists($this->idField, $routeParams)) {
270
-            $this->idValue = (int) !empty($routeParams[$this->idField]) ? $routeParams[$this->idField] : 0;
270
+            $this->idValue = (int)!empty($routeParams[$this->idField]) ? $routeParams[$this->idField] : 0;
271 271
         }
272 272
         if (0 === $this->idValue) {
273 273
             $this->idValue = $request->query->getInt($this->idField);
Please login to merge, or discard this patch.
src/system/RoutesModule/Form/Type/Base/AbstractRouteType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -332,7 +332,7 @@
 block discarded – undo
332 332
             ->setDefaults([
333 333
                 // define class for underlying data (required for embedding forms)
334 334
                 'data_class' => RouteEntity::class,
335
-                'empty_data' => function (FormInterface $form) {
335
+                'empty_data' => function(FormInterface $form) {
336 336
                     return $this->entityFactory->createRoute();
337 337
                 },
338 338
                 'error_mapping' => [
Please login to merge, or discard this patch.