@@ -69,8 +69,8 @@ private function getModuleConfig(): array
69
69
{
70
70
$ module = $ this ->module ;
71
71
72
- if (!$ module instanceof ConfigProviderInterface
73
- && !is_callable ([$ module , 'getConfig ' ])
72
+ if (! $ module instanceof ConfigProviderInterface
73
+ && ! is_callable ([$ module , 'getConfig ' ])
74
74
) {
75
75
return [];
76
76
}
@@ -100,7 +100,7 @@ private function convert($config): array
100
100
$ config = iterator_to_array ($ config );
101
101
}
102
102
103
- if (!is_array ($ config )) {
103
+ if (! is_array ($ config )) {
104
104
throw new InvalidArgumentException (sprintf (
105
105
'Config being merged must be an array, '
106
106
. 'implement the Traversable interface, or be an '
@@ -125,7 +125,7 @@ public function setDependenciesIdentifier(string $dependenciesIdentifier): void
125
125
private function getModuleDependencies (): array
126
126
{
127
127
$ module = $ this ->module ;
128
- if (!$ module instanceof ServiceProviderInterface) {
128
+ if (! $ module instanceof ServiceProviderInterface) {
129
129
return $ this ->dependencies ;
130
130
}
131
131
@@ -134,7 +134,7 @@ private function getModuleDependencies(): array
134
134
135
135
public function getRouteConfig (): array
136
136
{
137
- if (!$ this ->module instanceof RouteProviderInterface) {
137
+ if (! $ this ->module instanceof RouteProviderInterface) {
138
138
return [];
139
139
}
140
140
@@ -143,7 +143,7 @@ public function getRouteConfig(): array
143
143
144
144
public function getFormElementConfig (): array
145
145
{
146
- if (!$ this ->module instanceof FormElementProviderInterface) {
146
+ if (! $ this ->module instanceof FormElementProviderInterface) {
147
147
return [];
148
148
}
149
149
@@ -152,7 +152,7 @@ public function getFormElementConfig(): array
152
152
153
153
public function getFilterConfig (): array
154
154
{
155
- if (!$ this ->module instanceof FilterProviderInterface) {
155
+ if (! $ this ->module instanceof FilterProviderInterface) {
156
156
return [];
157
157
}
158
158
@@ -161,7 +161,7 @@ public function getFilterConfig(): array
161
161
162
162
public function getValidatorConfig (): array
163
163
{
164
- if (!$ this ->module instanceof ValidatorProviderInterface) {
164
+ if (! $ this ->module instanceof ValidatorProviderInterface) {
165
165
return [];
166
166
}
167
167
@@ -170,7 +170,7 @@ public function getValidatorConfig(): array
170
170
171
171
public function getHydratorConfig (): array
172
172
{
173
- if (!$ this ->module instanceof HydratorProviderInterface) {
173
+ if (! $ this ->module instanceof HydratorProviderInterface) {
174
174
return [];
175
175
}
176
176
@@ -179,7 +179,7 @@ public function getHydratorConfig(): array
179
179
180
180
public function getInputFilterConfig ()
181
181
{
182
- if (!$ this ->module instanceof InputFilterProviderInterface) {
182
+ if (! $ this ->module instanceof InputFilterProviderInterface) {
183
183
return [];
184
184
}
185
185
@@ -188,7 +188,7 @@ public function getInputFilterConfig()
188
188
189
189
public function getSerializerConfig (): array
190
190
{
191
- if (!$ this ->module instanceof SerializerProviderInterface) {
191
+ if (! $ this ->module instanceof SerializerProviderInterface) {
192
192
return [];
193
193
}
194
194
0 commit comments