Passed
Push — master ( 02ebda...ec0d02 )
by Jan
04:39
created
src/Services/EntityURLGenerator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -381,7 +381,7 @@
 block discarded – undo
381 381
         $class = get_class($entity);
382 382
 
383 383
         //Check if we have an direct mapping for the given class
384
-        if (! array_key_exists($class, $map)) {
384
+        if (!array_key_exists($class, $map)) {
385 385
             //Check if we need to check inheritance by looping through our map
386 386
             foreach (array_keys($map) as $key) {
387 387
                 if (is_a($entity, $key)) {
Please login to merge, or discard this patch.
src/Services/Parameters/ParameterExtractor.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
      */
41 41
     public function extractParameters(string $input, string $class = PartParameter::class): array
42 42
     {
43
-        if (! is_a($class, AbstractParameter::class, true)) {
43
+        if (!is_a($class, AbstractParameter::class, true)) {
44 44
             throw new \InvalidArgumentException('$class must be a child class of AbstractParameter!');
45 45
         }
46 46
 
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
 
69 69
         $matches = [];
70 70
         \preg_match($regex, $input, $matches);
71
-        if (! empty($matches)) {
71
+        if (!empty($matches)) {
72 72
             [, $name, $value] = $matches;
73 73
             $value = trim($value);
74 74
 
Please login to merge, or discard this patch.
tests/Controller/AdminPages/AbstractAdminControllerTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
         $client->request('GET', static::$base_path.'/new');
91 91
         $this->assertFalse($client->getResponse()->isRedirect());
92 92
         $this->assertSame($read, $client->getResponse()->isSuccessful(), 'Controller was not successful!');
93
-        $this->assertSame($read, ! $client->getResponse()->isForbidden(), 'Permission Checking not working!');
93
+        $this->assertSame($read, !$client->getResponse()->isForbidden(), 'Permission Checking not working!');
94 94
     }
95 95
 
96 96
     /**
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
         $client->request('GET', static::$base_path.'/1');
116 116
         $this->assertFalse($client->getResponse()->isRedirect());
117 117
         $this->assertSame($read, $client->getResponse()->isSuccessful(), 'Controller was not successful!');
118
-        $this->assertSame($read, ! $client->getResponse()->isForbidden(), 'Permission Checking not working!');
118
+        $this->assertSame($read, !$client->getResponse()->isForbidden(), 'Permission Checking not working!');
119 119
     }
120 120
 
121 121
     public function deleteDataProvider(): array
@@ -152,6 +152,6 @@  discard block
 block discarded – undo
152 152
 
153 153
         //Page is redirected to '/new', when delete was successful
154 154
         $this->assertSame($delete, $client->getResponse()->isRedirect(static::$base_path.'/new'));
155
-        $this->assertSame($delete, ! $client->getResponse()->isForbidden(), 'Permission Checking not working!');
155
+        $this->assertSame($delete, !$client->getResponse()->isForbidden(), 'Permission Checking not working!');
156 156
     }
157 157
 }
Please login to merge, or discard this patch.
src/EventSubscriber/SymfonyDebugToolbarSubscriber.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@
 block discarded – undo
81 81
 
82 82
     public function onKernelResponse(ResponseEvent $event): void
83 83
     {
84
-        if (! $this->kernel_debug) {
84
+        if (!$this->kernel_debug) {
85 85
             return;
86 86
         }
87 87
 
Please login to merge, or discard this patch.
src/Security/Voter/ExtendedVoter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@
 block discarded – undo
76 76
         }
77 77
 
78 78
         // if the user is anonymous, we use the anonymous user.
79
-        if (! $user instanceof User) {
79
+        if (!$user instanceof User) {
80 80
             /** @var UserRepository $repo */
81 81
             $repo = $this->entityManager->getRepository(User::class);
82 82
             $user = $repo->getAnonymousUser();
Please login to merge, or discard this patch.
src/Services/GitVersionInfo.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
             $git = file($this->project_dir.'/.git/HEAD');
65 65
             $head = explode('/', $git[0], 3);
66 66
 
67
-            if (! isset($head[2])) {
67
+            if (!isset($head[2])) {
68 68
                 return null;
69 69
             }
70 70
 
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
         if (is_file($filename)) {
90 90
             $head = file($filename);
91 91
 
92
-            if (! isset($head[0])) {
92
+            if (!isset($head[0])) {
93 93
                 return null;
94 94
             }
95 95
 
Please login to merge, or discard this patch.
src/Form/AdminPages/BaseEntityAdminForm.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -93,14 +93,14 @@  discard block
 block discarded – undo
93 93
                 'attr' => [
94 94
                     'placeholder' => 'part.name.placeholder',
95 95
                 ],
96
-                'disabled' => ! $this->security->isGranted($is_new ? 'create' : 'edit', $entity),
96
+                'disabled' => !$this->security->isGranted($is_new ? 'create' : 'edit', $entity),
97 97
             ])
98 98
 
99 99
             ->add('parent', StructuralEntityType::class, [
100 100
                 'class' => get_class($entity),
101 101
                 'required' => false,
102 102
                 'label' => 'parent.label',
103
-                'disabled' => ! $this->security->isGranted($is_new ? 'create' : 'move', $entity),
103
+                'disabled' => !$this->security->isGranted($is_new ? 'create' : 'move', $entity),
104 104
             ])
105 105
 
106 106
             ->add('not_selectable', CheckboxType::class, [
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
                 'label_attr' => [
111 111
                     'class' => 'checkbox-custom',
112 112
                 ],
113
-                'disabled' => ! $this->security->isGranted($is_new ? 'create' : 'edit', $entity),
113
+                'disabled' => !$this->security->isGranted($is_new ? 'create' : 'edit', $entity),
114 114
             ])
115 115
 
116 116
             ->add('comment', CKEditorType::class, [
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
                     'rows' => 4,
122 122
                 ],
123 123
                 'help' => 'bbcode.hint',
124
-                'disabled' => ! $this->security->isGranted($is_new ? 'create' : 'edit', $entity),
124
+                'disabled' => !$this->security->isGranted($is_new ? 'create' : 'edit', $entity),
125 125
             ]);
126 126
 
127 127
         $this->additionalFormElements($builder, $options, $entity);
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
             'allow_delete' => true,
134 134
             'label' => false,
135 135
             'reindex_enable' => true,
136
-            'disabled' => ! $this->security->isGranted($is_new ? 'create' : 'edit', $entity),
136
+            'disabled' => !$this->security->isGranted($is_new ? 'create' : 'edit', $entity),
137 137
             'entry_options' => [
138 138
                 'data_class' => $options['attachment_class'],
139 139
             ],
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
 
143 143
         $builder->add('master_picture_attachment', MasterPictureAttachmentType::class, [
144 144
             'required' => false,
145
-            'disabled' => ! $this->security->isGranted($is_new ? 'create' : 'edit', $entity),
145
+            'disabled' => !$this->security->isGranted($is_new ? 'create' : 'edit', $entity),
146 146
             'label' => 'part.edit.master_attachment',
147 147
             'entity' => $entity,
148 148
         ]);
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
             'entry_type' => ParameterType::class,
159 159
             'allow_add' => $this->security->isGranted($is_new ? 'create' : 'edit', $entity),
160 160
             'allow_delete' => $this->security->isGranted($is_new ? 'create' : 'edit', $entity),
161
-            'disabled' => ! $this->security->isGranted($is_new ? 'create' : 'edit', $entity),
161
+            'disabled' => !$this->security->isGranted($is_new ? 'create' : 'edit', $entity),
162 162
             'reindex_enable' => true,
163 163
             'label' => false,
164 164
             'by_reference' => false,
@@ -174,11 +174,11 @@  discard block
 block discarded – undo
174 174
             'attr' => [
175 175
                 'class' => $is_new ? 'btn-success' : '',
176 176
             ],
177
-            'disabled' => ! $this->security->isGranted($is_new ? 'create' : 'edit', $entity),
177
+            'disabled' => !$this->security->isGranted($is_new ? 'create' : 'edit', $entity),
178 178
         ])
179 179
             ->add('reset', ResetType::class, [
180 180
                 'label' => 'entity.edit.reset',
181
-                'disabled' => ! $this->security->isGranted($is_new ? 'create' : 'edit', $entity),
181
+                'disabled' => !$this->security->isGranted($is_new ? 'create' : 'edit', $entity),
182 182
             ]);
183 183
     }
184 184
 
Please login to merge, or discard this patch.
src/Controller/SecurityController.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
      */
101 101
     public function requestPwReset(PasswordResetManager $passwordReset, Request $request)
102 102
     {
103
-        if (! $this->allow_email_pw_reset) {
103
+        if (!$this->allow_email_pw_reset) {
104 104
             throw new AccessDeniedHttpException('The password reset via email is disabled!');
105 105
         }
106 106
 
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
      */
145 145
     public function pwResetNewPw(PasswordResetManager $passwordReset, Request $request, EntityManagerInterface $em, EventDispatcherInterface $eventDispatcher, ?string $user = null, ?string $token = null)
146 146
     {
147
-        if (! $this->allow_email_pw_reset) {
147
+        if (!$this->allow_email_pw_reset) {
148 148
             throw new AccessDeniedHttpException('The password reset via email is disabled!');
149 149
         }
150 150
 
@@ -189,7 +189,7 @@  discard block
 block discarded – undo
189 189
             $data = $form->getData();
190 190
             //Try to set the new password
191 191
             $success = $passwordReset->setNewPassword($data['username'], $data['token'], $data['new_password']);
192
-            if (! $success) {
192
+            if (!$success) {
193 193
                 $this->addFlash('error', 'pw_reset.new_pw.error');
194 194
             } else {
195 195
                 $this->addFlash('success', 'pw_reset.new_pw.success');
Please login to merge, or discard this patch.
src/Form/UserSettingsType.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -72,27 +72,27 @@  discard block
 block discarded – undo
72 72
         $builder
73 73
             ->add('name', TextType::class, [
74 74
                 'label' => 'user.username.label',
75
-                'disabled' => ! $this->security->isGranted('edit_username', $options['data']) || $this->demo_mode,
75
+                'disabled' => !$this->security->isGranted('edit_username', $options['data']) || $this->demo_mode,
76 76
             ])
77 77
             ->add('first_name', TextType::class, [
78 78
                 'required' => false,
79 79
                 'label' => 'user.firstName.label',
80
-                'disabled' => ! $this->security->isGranted('edit_infos', $options['data']) || $this->demo_mode,
80
+                'disabled' => !$this->security->isGranted('edit_infos', $options['data']) || $this->demo_mode,
81 81
             ])
82 82
             ->add('last_name', TextType::class, [
83 83
                 'required' => false,
84 84
                 'label' => 'user.lastName.label',
85
-                'disabled' => ! $this->security->isGranted('edit_infos', $options['data']) || $this->demo_mode,
85
+                'disabled' => !$this->security->isGranted('edit_infos', $options['data']) || $this->demo_mode,
86 86
             ])
87 87
             ->add('department', TextType::class, [
88 88
                 'required' => false,
89 89
                 'label' => 'user.department.label',
90
-                'disabled' => ! $this->security->isGranted('edit_infos', $options['data']) || $this->demo_mode,
90
+                'disabled' => !$this->security->isGranted('edit_infos', $options['data']) || $this->demo_mode,
91 91
             ])
92 92
             ->add('email', EmailType::class, [
93 93
                 'required' => false,
94 94
                 'label' => 'user.email.label',
95
-                'disabled' => ! $this->security->isGranted('edit_infos', $options['data']) || $this->demo_mode,
95
+                'disabled' => !$this->security->isGranted('edit_infos', $options['data']) || $this->demo_mode,
96 96
             ])
97 97
             ->add('language', LanguageType::class, [
98 98
                 'disabled' => $this->demo_mode,
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
                 ],
125 125
                 'translation_domain' => false,
126 126
                 'choices' => User::AVAILABLE_THEMES,
127
-                'choice_label' => function ($entity, $key, $value) {
127
+                'choice_label' => function($entity, $key, $value) {
128 128
                     return $value;
129 129
                 },
130 130
                 'placeholder' => 'user_settings.theme.placeholder',
Please login to merge, or discard this patch.