@@ -47,7 +47,7 @@ |
||
47 | 47 | return $result; |
48 | 48 | } |
49 | 49 | } catch (ReflectionException $e) { |
50 | - $e->getMessage();//ignore |
|
50 | + $e->getMessage(); //ignore |
|
51 | 51 | } |
52 | 52 | } |
53 | 53 | return null; |
@@ -35,7 +35,7 @@ |
||
35 | 35 | $className = $class->getName(); |
36 | 36 | $annotations = $this->reader->getClassAnnotations($class); |
37 | 37 | if (isset($this->config[$className])) { |
38 | - $annotations = array_filter($annotations, function ($annotation) { |
|
38 | + $annotations = array_filter($annotations, function($annotation) { |
|
39 | 39 | return !($annotation instanceof ApiResource); |
40 | 40 | }); |
41 | 41 | $annotations[] = $this->config[$className]; |
@@ -100,7 +100,7 @@ |
||
100 | 100 | $prop->setAccessible(true); |
101 | 101 | $factories = $prop->getValue($factory); |
102 | 102 | return $this->apie = new ChainableFactory( |
103 | - array_filter($factories, function (ApiResourceFactoryInterface $factory) { |
|
103 | + array_filter($factories, function(ApiResourceFactoryInterface $factory) { |
|
104 | 104 | return !$factory instanceof MockApiResourceFactory; |
105 | 105 | }) |
106 | 106 | ); |
@@ -112,7 +112,7 @@ discard block |
||
112 | 112 | $this->pluginContainer = new PluginContainer($plugins); |
113 | 113 | $this->pluginContainer->each( |
114 | 114 | ApieAwareInterface::class, |
115 | - function (ApieAwareInterface $plugin) { |
|
115 | + function(ApieAwareInterface $plugin) { |
|
116 | 116 | $plugin->setApie($this); |
117 | 117 | } |
118 | 118 | ); |
@@ -321,7 +321,7 @@ discard block |
||
321 | 321 | |
322 | 322 | public function onOpenApiDocGenerated(Document $document): Document |
323 | 323 | { |
324 | - $this->pluginContainer->each(OpenApiEventProviderInterface::class, function (OpenApiEventProviderInterface $plugin) use (&$document) { |
|
324 | + $this->pluginContainer->each(OpenApiEventProviderInterface::class, function(OpenApiEventProviderInterface $plugin) use (&$document) { |
|
325 | 325 | $document = $plugin->onOpenApiDocGenerated($document); |
326 | 326 | }); |
327 | 327 | return $document; |
@@ -193,7 +193,7 @@ |
||
193 | 193 | if (!$event->getResource()) { |
194 | 194 | $event->setResource($this->serializer->postData( |
195 | 195 | $resourceClass, |
196 | - (string)$event->getRequest()->getBody(), |
|
196 | + (string) $event->getRequest()->getBody(), |
|
197 | 197 | $event->getRequest()->getHeader('Content-Type')[0] ?? 'application/json' |
198 | 198 | )); |
199 | 199 | } |
@@ -84,7 +84,7 @@ |
||
84 | 84 | $this->apie->getBaseUrl(), |
85 | 85 | $this->getSubActionContainer(), |
86 | 86 | $this->apie->getPropertyConverter(), |
87 | - function (Document $doc) { |
|
87 | + function(Document $doc) { |
|
88 | 88 | $this->apie->onOpenApiDocGenerated($doc); |
89 | 89 | } |
90 | 90 | ); |
@@ -58,13 +58,13 @@ |
||
58 | 58 | |
59 | 59 | public function getSummary(): ?string |
60 | 60 | { |
61 | - $factory = DocBlockFactory::createInstance(); |
|
61 | + $factory = DocBlockFactory::createInstance(); |
|
62 | 62 | $docComment = $this->reflectionMethod->getDocComment(); |
63 | 63 | if (!$docComment) { |
64 | 64 | return null; |
65 | 65 | } |
66 | 66 | $docblock = $factory->create($docComment); |
67 | - return $docblock->getDescription() ? : null; |
|
67 | + return $docblock->getDescription() ?: null; |
|
68 | 68 | } |
69 | 69 | |
70 | 70 | /** |
@@ -70,7 +70,7 @@ |
||
70 | 70 | ); |
71 | 71 | |
72 | 72 | return array_map( |
73 | - function ($id) { |
|
73 | + function($id) { |
|
74 | 74 | return $this->dataLayer->retrieve($this->resourceClass, $id, $this->context); |
75 | 75 | }, |
76 | 76 | SearchFilterHelper::applySearchFilter($this->idList, $searchFilterRequest, $this->propertyAccessor) |
@@ -95,11 +95,11 @@ |
||
95 | 95 | */ |
96 | 96 | public function retrieveAll(string $resourceClass, array $context, SearchFilterRequest $searchFilterRequest): iterable |
97 | 97 | { |
98 | - $iterator = new RewindableGenerator(function () { |
|
98 | + $iterator = new RewindableGenerator(function() { |
|
99 | 99 | return $this->iterate(); |
100 | 100 | }); |
101 | 101 | if (array_key_exists('status', $searchFilterRequest->getSearches())) { |
102 | - $filter = function (Status $status) use ($searchFilterRequest) { |
|
102 | + $filter = function(Status $status) use ($searchFilterRequest) { |
|
103 | 103 | return $status->getStatus() === $searchFilterRequest->getSearches()['status']; |
104 | 104 | }; |
105 | 105 | $iterator = new CallbackFilterIterator( |