Test Setup Failed
Push — dependabot/composer/thomaspark... ( aabc3d...0d7c4f )
by
unknown
09:36 queued 04:31
created
src/system/UsersModule/Helper/DeleteHelper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -99,7 +99,7 @@
 block discarded – undo
99 99
         }
100 100
         if (isset($date)) {
101 101
             $date = \DateTime::createFromFormat('YmdHis', $date, new \DateTimeZone('UTC'));
102
-            $users = $users->filter(function (UserEntity $user) use ($date) {
102
+            $users = $users->filter(function(UserEntity $user) use ($date) {
103 103
                 return $user->getRegistrationDate() < $date;
104 104
             });
105 105
         }
Please login to merge, or discard this patch.
src/Zikula/CoreInstallerBundle/Stage/Install/CompleteStage.php 1 patch
Upper-Lower-Casing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -94,11 +94,11 @@
 block discarded – undo
94 94
     <title>${subject}</title>
95 95
 </head>
96 96
 <body>
97
-<h1>Hi ${uName}!</h1>
97
+<h1>Hi ${uname}!</h1>
98 98
 <p>Zikula has been successfully installed at <a href="${url}">${url}</a>. If you have further questions,
99 99
 visit <a href="https://ziku.la">ziku.la</a></p>
100 100
 </body>
101
-EOF;
101
+eof;
102 102
         $email = (new Email())
103 103
             ->from($adminUser->getEmail())
104 104
             ->to($adminUser->getEmail())
Please login to merge, or discard this patch.
src/system/ZAuthModule/Command/ZikulaZauthEditCommand.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -90,7 +90,7 @@
 block discarded – undo
90 90
 
91 91
 <info>php %command.full_name% fabien</info>
92 92
 
93
-EOT
93
+eot
94 94
             );
95 95
     }
96 96
 
Please login to merge, or discard this patch.
src/system/SecurityCenterModule/Entity/Repository/IntrusionRepository.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
                 $qb->from('ZikulaUsersModule:UserEntity', 'u');
76 76
                 $qb->andWhere($qb->expr()->eq('tbl.user', 'u.uid'));
77 77
                 $qb->andWhere($qb->expr()->eq('tbl.user', ':uid'))
78
-                   ->setParameter('uid', $uid);
78
+                    ->setParameter('uid', $uid);
79 79
             }
80 80
         }
81 81
 
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
             $i = 1;
85 85
             foreach ($filters as $w_key => $w_value) {
86 86
                 $qb->andWhere($qb->expr()->eq('tbl.' . $w_key, '?' . $i))
87
-                   ->setParameter($i, $w_value);
87
+                    ->setParameter($i, $w_value);
88 88
                 $i++;
89 89
             }
90 90
         }
@@ -107,12 +107,12 @@  discard block
 block discarded – undo
107 107
 
108 108
         if ('uid' === $fieldName) {
109 109
             $qb->select('DISTINCT(u.uname)')
110
-               ->from('ZikulaUsersModule:UserEntity', 'u')
111
-               ->where($qb->expr()->eq('tbl.user', 'u.uid'))
112
-               ->addOrderBy('u.uname', 'ASC');
110
+                ->from('ZikulaUsersModule:UserEntity', 'u')
111
+                ->where($qb->expr()->eq('tbl.user', 'u.uid'))
112
+                ->addOrderBy('u.uname', 'ASC');
113 113
         } else {
114 114
             $qb->select('DISTINCT(tbl.' . $fieldName . ')')
115
-               ->addOrderBy('tbl.' . $fieldName, 'ASC');
115
+                ->addOrderBy('tbl.' . $fieldName, 'ASC');
116 116
         }
117 117
 
118 118
         return $qb->getQuery()->getResult();
Please login to merge, or discard this patch.
src/system/GroupsModule/Entity/Repository/GroupRepository.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -45,12 +45,12 @@  discard block
 block discarded – undo
45 45
 
46 46
         if (null !== $groupType) {
47 47
             $qb->where('g.gtype = :gtype')
48
-               ->setParameter('gtype', $groupType);
48
+                ->setParameter('gtype', $groupType);
49 49
         }
50 50
 
51 51
         if (null !== $excludedState) {
52 52
             $qb->andWhere('g.state != :state')
53
-               ->setParameter('state', $excludedState);
53
+                ->setParameter('state', $excludedState);
54 54
         }
55 55
 
56 56
         $query = $qb->getQuery();
@@ -139,7 +139,7 @@  discard block
 block discarded – undo
139 139
         // already another group by that name.
140 140
         if (is_numeric($excludedGroupId) && $excludedGroupId > 0) {
141 141
             $qb->andWhere($qb->expr()->neq('g.gid', ':ggid'))
142
-               ->setParameter('ggid', $excludedGroupId);
142
+                ->setParameter('ggid', $excludedGroupId);
143 143
         }
144 144
 
145 145
         $query = $qb->getQuery();
Please login to merge, or discard this patch.
src/system/UsersModule/Controller/AccessController.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -122,7 +122,8 @@
 block discarded – undo
122 122
                 $form = $this->createForm(DefaultLoginType::class, ['uid' => $uid]);
123 123
                 $loginFormEvent = new LoginFormPostCreatedEvent($form);
124 124
                 $eventDispatcher->dispatch($loginFormEvent);
125
-                if ($form->count() > 3) { // count > 3 means that the LoginFormPostCreatedEvent event added some form children
125
+                if ($form->count() > 3) {
126
+// count > 3 means that the LoginFormPostCreatedEvent event added some form children
126 127
                     $form->handleRequest($request);
127 128
                     if ($form->isSubmitted() && $form->isValid()) {
128 129
                         $uid = $form->get('uid')->getData();
Please login to merge, or discard this patch.
src/system/ThemeModule/Tests/Engine/AssetBagTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -138,7 +138,7 @@
 block discarded – undo
138 138
         $bag->add(['C' => 2]);
139 139
         $bag->add(['A' => 5]);
140 140
         $bag->add(['A' => 7]);
141
-        $this->assertEquals(3, $bag->allWithWeight()['A']);  // asset listed at lowest weight submitted
141
+        $this->assertEquals(3, $bag->allWithWeight()['A']); // asset listed at lowest weight submitted
142 142
         $expected = [
143 143
             'B' => 1,
144 144
             'C' => 2,
Please login to merge, or discard this patch.
src/system/ZAuthModule/Listener/DeletePendingRegistrationsListener.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -108,7 +108,7 @@
 block discarded – undo
108 108
 Your registration at %site% associated with this email (%email%) has been deleted from the site.
109 109
 This could have happened because you have delayed too long in confirming your email address, or because the administrator manually deleted your registration.
110 110
 If you have any questions, please contact the site administrator or re-register.
111
-EOT
111
+eot
112 112
         , ['%site%' => $siteName, '%email%' => $event->getUser()->getEmail()]));
113 113
         try {
114 114
             $this->mailer->send($email);
Please login to merge, or discard this patch.
src/system/SearchModule/Entity/Repository/SearchResultRepository.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
 
45 45
         if ('' !== $sessionId) {
46 46
             $qb->orWhere('tbl.sesid = :sid')
47
-               ->setParameter('sid', $sessionId);
47
+                ->setParameter('sid', $sessionId);
48 48
         }
49 49
 
50 50
         $query = $qb->getQuery();
Please login to merge, or discard this patch.