Passed
Push — master ( 47702d...01c19a )
by Jan
05:05
created
src/DataTables/Adapter/ORMAdapter.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -222,7 +222,7 @@  discard block
 block discarded – undo
222 222
 
223 223
         $qb->resetDQLPart('orderBy');
224 224
         $gb = $qb->getDQLPart('groupBy');
225
-        if (empty($gb) || ! $this->hasGroupByPart($identifier, $gb)) {
225
+        if (empty($gb) || !$this->hasGroupByPart($identifier, $gb)) {
226 226
             $qb->select($qb->expr()->count($identifier));
227 227
 
228 228
             return (int) $qb->getQuery()->getSingleScalarResult();
@@ -281,7 +281,7 @@  discard block
 block discarded – undo
281 281
 
282 282
     protected function configureOptions(OptionsResolver $resolver): void
283 283
     {
284
-        $providerNormalizer = function (Options $options, $value) {
284
+        $providerNormalizer = function(Options $options, $value) {
285 285
             return array_map([$this, 'normalizeProcessor'], (array) $value);
286 286
         };
287 287
 
@@ -289,7 +289,7 @@  discard block
 block discarded – undo
289 289
             ->setDefaults([
290 290
                 'hydrate' => Query::HYDRATE_OBJECT,
291 291
                 'query' => [],
292
-                'criteria' => function (Options $options) {
292
+                'criteria' => function(Options $options) {
293 293
                     return [new SearchCriteriaProvider()];
294 294
                 },
295 295
             ])
Please login to merge, or discard this patch.
src/Helpers/Trees/StructuralDBElementIterator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
         /** @var AbstractStructuralDBElement $element */
42 42
         $element = $this->current();
43 43
 
44
-        return ! empty($element->getSubelements());
44
+        return !empty($element->getSubelements());
45 45
     }
46 46
 
47 47
     public function getChildren()
Please login to merge, or discard this patch.
src/Validator/Constraints/SelectableValidator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
      */
44 44
     public function validate($value, Constraint $constraint): void
45 45
     {
46
-        if (! $constraint instanceof Selectable) {
46
+        if (!$constraint instanceof Selectable) {
47 47
             throw new UnexpectedTypeException($constraint, Selectable::class);
48 48
         }
49 49
 
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
         }
55 55
 
56 56
         //Check type of value. Validating only works for StructuralDBElements
57
-        if (! $value instanceof AbstractStructuralDBElement) {
57
+        if (!$value instanceof AbstractStructuralDBElement) {
58 58
             throw new UnexpectedValueException($value, 'StructuralDBElement');
59 59
         }
60 60
 
Please login to merge, or discard this patch.
src/Validator/Constraints/NoneOfItsChildrenValidator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
      */
44 44
     public function validate($value, Constraint $constraint): void
45 45
     {
46
-        if (! $constraint instanceof NoneOfItsChildren) {
46
+        if (!$constraint instanceof NoneOfItsChildren) {
47 47
             throw new UnexpectedTypeException($constraint, NoneOfItsChildren::class);
48 48
         }
49 49
 
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
         }
55 55
 
56 56
         //Check type of value. Validating only works for StructuralDBElements
57
-        if (! $value instanceof AbstractStructuralDBElement) {
57
+        if (!$value instanceof AbstractStructuralDBElement) {
58 58
             throw new UnexpectedValueException($value, 'StructuralDBElement');
59 59
         }
60 60
 
Please login to merge, or discard this patch.
src/Entity/Base/AbstractStructuralDBElement.php 2 patches
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -176,7 +176,6 @@
 block discarded – undo
176 176
 
177 177
     /**
178 178
      *  Get the comment of the element.
179
-
180 179
      *
181 180
      * @return string the comment
182 181
      */
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
 
128 128
         //Check if both elements compared, are from the same type
129 129
         // (we have to check inheritance, or we get exceptions when using doctrine entities (they have a proxy type):
130
-        if (! is_a($another_element, $class_name) && ! is_a($this, get_class($another_element))) {
130
+        if (!is_a($another_element, $class_name) && !is_a($this, get_class($another_element))) {
131 131
             throw new InvalidArgumentException('isChildOf() only works for objects of the same type!');
132 132
         }
133 133
 
@@ -243,7 +243,7 @@  discard block
 block discarded – undo
243 243
         $tmp[] = $this;
244 244
 
245 245
         //We only allow 20 levels depth
246
-        while (! end($tmp)->isRoot() && count($tmp) < 20) {
246
+        while (!end($tmp)->isRoot() && count($tmp) < 20) {
247 247
             $tmp[] = end($tmp)->parent;
248 248
         }
249 249
 
@@ -322,7 +322,7 @@  discard block
 block discarded – undo
322 322
      */
323 323
     public function setChildren($elements): self
324 324
     {
325
-        if (! is_array($elements) && ! $elements instanceof Collection) {
325
+        if (!is_array($elements) && !$elements instanceof Collection) {
326 326
             throw new InvalidArgumentException('$elements must be an array or Collection!');
327 327
         }
328 328
 
Please login to merge, or discard this patch.
src/Services/EntityExporter.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -61,13 +61,13 @@  discard block
 block discarded – undo
61 61
         $format = $request->get('format') ?? 'json';
62 62
 
63 63
         //Check if we have one of the supported formats
64
-        if (! in_array($format, ['json', 'csv', 'yaml', 'xml'], true)) {
64
+        if (!in_array($format, ['json', 'csv', 'yaml', 'xml'], true)) {
65 65
             throw new InvalidArgumentException('Given format is not supported!');
66 66
         }
67 67
 
68 68
         //Check export verbosity level
69 69
         $level = $request->get('level') ?? 'extended';
70
-        if (! in_array($level, ['simple', 'extended', 'full'], true)) {
70
+        if (!in_array($level, ['simple', 'extended', 'full'], true)) {
71 71
             throw new InvalidArgumentException('Given level is not supported!');
72 72
         }
73 73
 
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
         $response->headers->set('Content-Type', $content_type);
114 114
 
115 115
         //If view option is not specified, then download the file.
116
-        if (! $request->get('view')) {
116
+        if (!$request->get('view')) {
117 117
             if ($entity instanceof AbstractNamedDBElement) {
118 118
                 $entity_name = $entity->getName();
119 119
             } elseif (is_array($entity)) {
Please login to merge, or discard this patch.
src/Services/EntityImporter.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -64,10 +64,10 @@  discard block
 block discarded – undo
64 64
         //Expand every line to a single entry:
65 65
         $names = explode("\n", $lines);
66 66
 
67
-        if (! is_a($class_name, AbstractStructuralDBElement::class, true)) {
67
+        if (!is_a($class_name, AbstractStructuralDBElement::class, true)) {
68 68
             throw new InvalidArgumentException('$class_name must be a StructuralDBElement type!');
69 69
         }
70
-        if (null !== $parent && ! is_a($parent, $class_name)) {
70
+        if (null !== $parent && !is_a($parent, $class_name)) {
71 71
             throw new InvalidArgumentException('$parent must have the same type as specified in $class_name!');
72 72
         }
73 73
 
@@ -184,7 +184,7 @@  discard block
 block discarded – undo
184 184
             ]);
185 185
 
186 186
         //Ensure we have an array of entitity elements.
187
-        if (! is_array($entities)) {
187
+        if (!is_array($entities)) {
188 188
             $entities = [$entities];
189 189
         }
190 190
 
Please login to merge, or discard this patch.
src/Services/StructuralElementRecursionHelper.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
         $children = $element->getChildren();
59 59
 
60 60
         //If we should call from top we execute the func here.
61
-        if (! $call_from_bottom) {
61
+        if (!$call_from_bottom) {
62 62
             $func($element);
63 63
         }
64 64
 
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
     {
84 84
         $em = $this->em;
85 85
 
86
-        $this->execute($element, static function (AbstractStructuralDBElement $element) use ($em): void {
86
+        $this->execute($element, static function(AbstractStructuralDBElement $element) use ($em): void {
87 87
             $em->remove($element);
88 88
         });
89 89
 
Please login to merge, or discard this patch.
src/DataFixtures/DataStructureFixtures.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@
 block discarded – undo
71 71
      */
72 72
     public function createNodesForClass(string $class, ObjectManager $manager): void
73 73
     {
74
-        if (! new $class() instanceof AbstractStructuralDBElement) {
74
+        if (!new $class() instanceof AbstractStructuralDBElement) {
75 75
             throw new InvalidArgumentException('$class must be a StructuralDBElement!');
76 76
         }
77 77
 
Please login to merge, or discard this patch.