@@ -40,7 +40,7 @@ |
||
40 | 40 | /** |
41 | 41 | * @ORM\Column(type="json", nullable=true) |
42 | 42 | */ |
43 | - private ?array $defaultQueryParameters; |
|
43 | + private ? array $defaultQueryParameters; |
|
44 | 44 | |
45 | 45 | /** |
46 | 46 | * @ApiProperty(writable=false) |
@@ -26,5 +26,5 @@ |
||
26 | 26 | public ?string $uiComponent = null; |
27 | 27 | |
28 | 28 | /** @ORM\Column(type="json", nullable=true) */ |
29 | - public ?array $uiClassNames = null; |
|
29 | + public ? array $uiClassNames = null; |
|
30 | 30 | } |
@@ -130,7 +130,4 @@ |
||
130 | 130 | throw new Exception($label . ' can not be empty'); |
131 | 131 | } |
132 | 132 | |
133 | - return $string; |
|
134 | - }; |
|
135 | - } |
|
136 | -} |
|
133 | + return $string |
|
137 | 134 | \ No newline at end of file |
@@ -130,7 +130,4 @@ |
||
130 | 130 | throw new Exception($label . ' can not be empty'); |
131 | 131 | } |
132 | 132 | |
133 | - return $string; |
|
134 | - }; |
|
135 | - } |
|
136 | -} |
|
133 | + return $string |
|
137 | 134 | \ No newline at end of file |
@@ -130,7 +130,4 @@ |
||
130 | 130 | throw new Exception($label . ' can not be empty'); |
131 | 131 | } |
132 | 132 | |
133 | - return $string; |
|
134 | - }; |
|
135 | - } |
|
136 | -} |
|
133 | + return $string |
|
137 | 134 | \ No newline at end of file |
@@ -130,7 +130,4 @@ |
||
130 | 130 | throw new Exception($label . ' can not be empty'); |
131 | 131 | } |
132 | 132 | |
133 | - return $string; |
|
134 | - }; |
|
135 | - } |
|
136 | -} |
|
133 | + return $string |
|
137 | 134 | \ No newline at end of file |
@@ -130,7 +130,4 @@ |
||
130 | 130 | throw new Exception($label . ' can not be empty'); |
131 | 131 | } |
132 | 132 | |
133 | - return $string; |
|
134 | - }; |
|
135 | - } |
|
136 | -} |
|
133 | + return $string |
|
137 | 134 | \ No newline at end of file |
@@ -138,8 +138,7 @@ |
||
138 | 138 | $request = $requestStack->getMasterRequest(); |
139 | 139 | |
140 | 140 | $path = ($request && $this->redirectPathQueryKey) ? |
141 | - $request->query->get($this->redirectPathQueryKey, $this->defaultRedirectPath) : |
|
142 | - $this->defaultRedirectPath; |
|
141 | + $request->query->get($this->redirectPathQueryKey, $this->defaultRedirectPath) : $this->defaultRedirectPath; |
|
143 | 142 | |
144 | 143 | if (null === $path) { |
145 | 144 | throw new UnexpectedValueException(sprintf('The querystring key `%s` could not be found in the request to generate a token URL', $this->redirectPathQueryKey)); |
@@ -30,5 +30,5 @@ |
||
30 | 30 | /** |
31 | 31 | * @var string[] |
32 | 32 | */ |
33 | - public ?array $validationGroups = null; |
|
33 | + public ? array $validationGroups = null; |
|
34 | 34 | } |
@@ -38,7 +38,7 @@ |
||
38 | 38 | public function validate($data, array $context = []) |
39 | 39 | { |
40 | 40 | if (is_object($data) && $this->publishableHelper->isPublishable($data) && $this->publishableHelper->hasPublicationDate($data)) { |
41 | - $groups = [(new \ReflectionClass(get_class($data)))->getShortName().':published']; |
|
41 | + $groups = [(new \ReflectionClass(get_class($data)))->getShortName() . ':published']; |
|
42 | 42 | if (!empty($this->publishableHelper->getConfiguration($data)->validationGroups)) { |
43 | 43 | $groups = $this->publishableHelper->getConfiguration($data)->validationGroups; |
44 | 44 | } |