Passed
Pull Request — main (#133)
by Tom
03:12
created
src/Config.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
      *                  Be warned, using the same groupSuffix with two different
21 21
      *                  groups can cause collisions.
22 22
      */
23
-    protected string|null $groupSuffix = null;
23
+    protected string | null $groupSuffix = null;
24 24
 
25 25
     /**
26 26
      * @var bool When set to true hydrator results will be cached for the
@@ -48,14 +48,14 @@  discard block
 block discarded – undo
48 48
      *                all hydrators will extract by reference.  This overrides
49 49
      *                per-entity attribute configuration.
50 50
      */
51
-    protected bool|null $globalByValue = null;
51
+    protected bool | null $globalByValue = null;
52 52
 
53 53
     /**
54 54
      * @var string|null When set, the entityPrefix will be removed from each
55 55
      *                  type name.  This simplifies type names and makes reading
56 56
      *                  the GraphQL documentation easier.
57 57
      */
58
-    protected string|null $entityPrefix = null;
58
+    protected string | null $entityPrefix = null;
59 59
 
60 60
     /** @param mixed[] $config */
61 61
     public function __construct(array $config = [])
@@ -82,14 +82,14 @@  discard block
 block discarded – undo
82 82
         return $this->group;
83 83
     }
84 84
 
85
-    protected function setGroupSuffix(string|null $groupSuffix): self
85
+    protected function setGroupSuffix(string | null $groupSuffix): self
86 86
     {
87 87
         $this->groupSuffix = $groupSuffix;
88 88
 
89 89
         return $this;
90 90
     }
91 91
 
92
-    public function getGroupSuffix(): string|null
92
+    public function getGroupSuffix(): string | null
93 93
     {
94 94
         return $this->groupSuffix;
95 95
     }
@@ -144,26 +144,26 @@  discard block
 block discarded – undo
144 144
         return $this->globalIgnore;
145 145
     }
146 146
 
147
-    protected function setGlobalByValue(bool|null $globalByValue): self
147
+    protected function setGlobalByValue(bool | null $globalByValue): self
148 148
     {
149 149
         $this->globalByValue = $globalByValue;
150 150
 
151 151
         return $this;
152 152
     }
153 153
 
154
-    public function getGlobalByValue(): bool|null
154
+    public function getGlobalByValue(): bool | null
155 155
     {
156 156
         return $this->globalByValue;
157 157
     }
158 158
 
159
-    protected function setEntityPrefix(string|null $entityPrefix): self
159
+    protected function setEntityPrefix(string | null $entityPrefix): self
160 160
     {
161 161
         $this->entityPrefix = $entityPrefix;
162 162
 
163 163
         return $this;
164 164
     }
165 165
 
166
-    public function getEntityPrefix(): string|null
166
+    public function getEntityPrefix(): string | null
167 167
     {
168 168
         return $this->entityPrefix;
169 169
     }
Please login to merge, or discard this patch.
src/Input/InputFactory.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
         $fields       = [];
42 42
         $targetEntity = $this->typeManager->build(Entity::class, $id);
43 43
 
44
-        if (! count($requiredFields) && ! count($optionalFields)) {
44
+        if (!count($requiredFields) && !count($optionalFields)) {
45 45
             $this->addAllFieldsAsRequired($targetEntity, $fields);
46 46
         } else {
47 47
             $this->addRequiredFields($targetEntity, $requiredFields, $fields);
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
         array &$fields,
66 66
     ): void {
67 67
         foreach ($this->entityManager->getClassMetadata($targetEntity->getEntityClass())->getFieldNames() as $fieldName) {
68
-            if (! in_array($fieldName, $optionalFields) && $optionalFields !== ['*']) {
68
+            if (!in_array($fieldName, $optionalFields) && $optionalFields !== ['*']) {
69 69
                 continue;
70 70
             }
71 71
 
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
         array &$fields,
97 97
     ): void {
98 98
         foreach ($this->entityManager->getClassMetadata($targetEntity->getEntityClass())->getFieldNames() as $fieldName) {
99
-            if (! in_array($fieldName, $requiredFields) && $requiredFields !== ['*']) {
99
+            if (!in_array($fieldName, $requiredFields) && $requiredFields !== ['*']) {
100 100
                 continue;
101 101
             }
102 102
 
Please login to merge, or discard this patch.
src/Metadata/MetadataFactory.php 1 patch
Spacing   +6 added lines, -7 removed lines patch added patch discarded remove patch
@@ -21,14 +21,14 @@  discard block
 block discarded – undo
21 21
     protected Config $config;
22 22
 
23 23
     /** @param mixed[] $metadataConfig */
24
-    public function __construct(protected ContainerInterface $container, protected array|null $metadataConfig = [])
24
+    public function __construct(protected ContainerInterface $container, protected array | null $metadataConfig = [])
25 25
     {
26 26
         $this->entityManager = $container->get(EntityManager::class);
27 27
         $this->config        = $container->get(Config::class);
28 28
     }
29 29
 
30 30
     /** @return mixed[]|null */
31
-    public function __invoke(): array|null
31
+    public function __invoke(): array | null
32 32
     {
33 33
         if ($this->metadataConfig) {
34 34
             return $this->metadataConfig;
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
 
79 79
             // Only one matching instance per group is allowed
80 80
             assert(
81
-                ! $entityInstance,
81
+                !$entityInstance,
82 82
                 'Duplicate attribute found for entity '
83 83
                 . $reflectionClass->getName() . ', group ' . $instance->getGroup(),
84 84
             );
@@ -94,8 +94,7 @@  discard block
 block discarded – undo
94 94
                 'excludeCriteria' => $instance->getExcludeCriteria(),
95 95
                 'description' => $instance->getDescription(),
96 96
                 'typeName' => $instance->getTypeName()
97
-                    ? $this->appendGroupSuffix($instance->getTypeName()) :
98
-                    $this->getTypeName($reflectionClass->getName()),
97
+                    ? $this->appendGroupSuffix($instance->getTypeName()) : $this->getTypeName($reflectionClass->getName()),
99 98
             ];
100 99
         }
101 100
     }
@@ -118,7 +117,7 @@  discard block
 block discarded – undo
118 117
 
119 118
                 // Only one matching instance per group is allowed
120 119
                 assert(
121
-                    ! $fieldInstance,
120
+                    !$fieldInstance,
122 121
                     'Duplicate attribute found for field '
123 122
                     . $fieldName . ', group ' . $instance->getGroup(),
124 123
                 );
@@ -169,7 +168,7 @@  discard block
 block discarded – undo
169 168
 
170 169
                 // Only one matching instance per group is allowed
171 170
                 assert(
172
-                    ! $associationInstance,
171
+                    !$associationInstance,
173 172
                     'Duplicate attribute found for association '
174 173
                     . $associationName . ', group ' . $instance->getGroup(),
175 174
                 );
Please login to merge, or discard this patch.
src/Services.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
      */
23 23
     public function __construct(
24 24
         EntityManager $entityManager,
25
-        Config|null $config = null,
25
+        Config | null $config = null,
26 26
         array $metadataConfig = [],
27 27
     ) {
28 28
         $this
@@ -30,8 +30,8 @@  discard block
 block discarded – undo
30 30
             ->set(EntityManager::class, $entityManager)
31 31
             ->set(
32 32
                 Config::class,
33
-                static function () use ($config) {
34
-                    if (! $config) {
33
+                static function() use ($config) {
34
+                    if (!$config) {
35 35
                         $config = new Config();
36 36
                     }
37 37
 
@@ -48,13 +48,13 @@  discard block
 block discarded – undo
48 48
             )
49 49
             ->set(
50 50
                 'metadataConfig',
51
-                static function (ContainerInterface $container) use ($metadataConfig) {
51
+                static function(ContainerInterface $container) use ($metadataConfig) {
52 52
                     return (new Metadata\MetadataFactory($container, $metadataConfig))();
53 53
                 },
54 54
             )
55 55
             ->set(
56 56
                 Metadata\GlobalEnable::class,
57
-                static function (ContainerInterface $container) {
57
+                static function(ContainerInterface $container) {
58 58
                     return new Metadata\GlobalEnable(
59 59
                         $container->get(EntityManager::class),
60 60
                         $container->get(Config::class),
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
             )
64 64
             ->set(
65 65
                 Resolve\FieldResolver::class,
66
-                static function (ContainerInterface $container) {
66
+                static function(ContainerInterface $container) {
67 67
                     return new Resolve\FieldResolver(
68 68
                         $container->get(Config::class),
69 69
                         $container->get(Type\TypeManager::class),
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
             )
73 73
             ->set(
74 74
                 Resolve\ResolveCollectionFactory::class,
75
-                static function (ContainerInterface $container) {
75
+                static function(ContainerInterface $container) {
76 76
                     return new Resolve\ResolveCollectionFactory(
77 77
                         $container->get(EntityManager::class),
78 78
                         $container->get(Config::class),
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
             )
86 86
             ->set(
87 87
                 Resolve\ResolveEntityFactory::class,
88
-                static function (ContainerInterface $container) {
88
+                static function(ContainerInterface $container) {
89 89
                     return new Resolve\ResolveEntityFactory(
90 90
                         $container->get(Config::class),
91 91
                         $container->get(EntityManager::class),
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
             )
96 96
             ->set(
97 97
                 Criteria\CriteriaFactory::class,
98
-                static function (ContainerInterface $container) {
98
+                static function(ContainerInterface $container) {
99 99
                     return new Criteria\CriteriaFactory(
100 100
                         $container->get(Config::class),
101 101
                         $container->get(EntityManager::class),
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
             )
107 107
             ->set(
108 108
                 Hydrator\HydratorFactory::class,
109
-                static function (ContainerInterface $container) {
109
+                static function(ContainerInterface $container) {
110 110
                     return new Hydrator\HydratorFactory(
111 111
                         $container->get(EntityManager::class),
112 112
                         $container->get(Type\TypeManager::class),
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
             )
116 116
             ->set(
117 117
                 Input\InputFactory::class,
118
-                static function (ContainerInterface $container) {
118
+                static function(ContainerInterface $container) {
119 119
                     return new Input\InputFactory(
120 120
                         $container->get(Config::class),
121 121
                         $container->get(EntityManager::class),
Please login to merge, or discard this patch.
src/Type/Entity.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
         $this->hydratorFactory   = $container->get(HydratorFactory::class);
58 58
         $this->typeManager       = $container->get(TypeManager::class);
59 59
 
60
-        if (! isset($container->get('metadataConfig')[$typeName])) {
60
+        if (!isset($container->get('metadataConfig')[$typeName])) {
61 61
             throw new Error(
62 62
                 'Entity ' . $typeName . ' is not mapped in the metadata',
63 63
             );
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
         return $this->metadataConfig['typeName'];
82 82
     }
83 83
 
84
-    public function getDescription(): string|null
84
+    public function getDescription(): string | null
85 85
     {
86 86
         return $this->metadataConfig['description'];
87 87
     }
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
         $classMetadata = $this->entityManager->getClassMetadata($this->getEntityClass());
141 141
 
142 142
         foreach ($classMetadata->getFieldNames() as $fieldName) {
143
-            if (! in_array($fieldName, array_keys($this->metadataConfig['fields']))) {
143
+            if (!in_array($fieldName, array_keys($this->metadataConfig['fields']))) {
144 144
                 continue;
145 145
             }
146 146
 
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
         $classMetadata = $this->entityManager->getClassMetadata($this->getEntityClass());
159 159
 
160 160
         foreach ($classMetadata->getAssociationNames() as $associationName) {
161
-            if (! in_array($associationName, array_keys($this->metadataConfig['fields']))) {
161
+            if (!in_array($associationName, array_keys($this->metadataConfig['fields']))) {
162 162
                 continue;
163 163
             }
164 164
 
@@ -169,7 +169,7 @@  discard block
 block discarded – undo
169 169
                 case ClassMetadataInfo::MANY_TO_ONE:
170 170
                 case ClassMetadataInfo::TO_ONE:
171 171
                     $targetEntity             = $associationMetadata['targetEntity'];
172
-                    $fields[$associationName] = function () use ($targetEntity) {
172
+                    $fields[$associationName] = function() use ($targetEntity) {
173 173
                         $entity = $this->typeManager->build(self::class, $targetEntity);
174 174
 
175 175
                         return [
@@ -182,7 +182,7 @@  discard block
 block discarded – undo
182 182
                 case ClassMetadataInfo::MANY_TO_MANY:
183 183
                 case ClassMetadataInfo::TO_MANY:
184 184
                     $targetEntity             = $associationMetadata['targetEntity'];
185
-                    $fields[$associationName] = function () use ($targetEntity, $associationName) {
185
+                    $fields[$associationName] = function() use ($targetEntity, $associationName) {
186 186
                         $entity    = $this->typeManager->build(self::class, $targetEntity);
187 187
                         $shortName = $this->getTypeName() . '_' . $associationName;
188 188
 
Please login to merge, or discard this patch.
src/Resolve/ResolveCollectionFactory.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
         protected FieldResolver $fieldResolver,
32 32
         protected TypeManager $typeManager,
33 33
         protected EventDispatcher $eventDispatcher,
34
-        protected array|null $metadataConfig,
34
+        protected array | null $metadataConfig,
35 35
     ) {
36 36
     }
37 37
 
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
 
57 57
     public function get(Entity $entity): Closure
58 58
     {
59
-        return function ($source, array $args, $context, ResolveInfo $info) {
59
+        return function($source, array $args, $context, ResolveInfo $info) {
60 60
             $fieldResolver = $this->fieldResolver;
61 61
             $collection    = $fieldResolver($source, $args, $context, $info);
62 62
 
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
             }
117 117
         }
118 118
 
119
-        if (! empty($orderBy)) {
119
+        if (!empty($orderBy)) {
120 120
             $criteria->orderBy($orderBy);
121 121
         }
122 122
 
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
         array $pagination,
133 133
         PersistentCollection $collection,
134 134
         Criteria $criteria,
135
-        string|null $filterCriteriaEventName,
135
+        string | null $filterCriteriaEventName,
136 136
         mixed ...$resolve,
137 137
     ): array {
138 138
         $paginationFields = [
@@ -222,7 +222,7 @@  discard block
 block discarded – undo
222 222
                 'cursor' => $cursors['last'],
223 223
             ];
224 224
 
225
-            if (! $cursors['first']) {
225
+            if (!$cursors['first']) {
226 226
                 $cursors['first'] = $cursors['last'];
227 227
             }
228 228
 
@@ -265,7 +265,7 @@  discard block
 block discarded – undo
265 265
             $offset = 0;
266 266
         }
267 267
 
268
-        if ($paginationFields['last'] && ! $paginationFields['before']) {
268
+        if ($paginationFields['last'] && !$paginationFields['before']) {
269 269
             $offset = $itemCount - $paginationFields['last'];
270 270
         }
271 271
 
Please login to merge, or discard this patch.