@@ -51,7 +51,7 @@ |
||
51 | 51 | * @param string $name |
52 | 52 | * @return Property|null |
53 | 53 | */ |
54 | - public function getBySerializedName(string $name): ?Property |
|
54 | + public function getBySerializedName(string $name): ? Property |
|
55 | 55 | { |
56 | 56 | if (!isset($this->elements[$name])) { |
57 | 57 | return null; |
@@ -173,7 +173,7 @@ discard block |
||
173 | 173 | ); |
174 | 174 | } |
175 | 175 | |
176 | - return (float)$this->pop(); |
|
176 | + return (float) $this->pop(); |
|
177 | 177 | } |
178 | 178 | |
179 | 179 | /** |
@@ -190,7 +190,7 @@ discard block |
||
190 | 190 | ); |
191 | 191 | } |
192 | 192 | |
193 | - return (int)$this->pop(); |
|
193 | + return (int) $this->pop(); |
|
194 | 194 | } |
195 | 195 | |
196 | 196 | /** |
@@ -24,7 +24,7 @@ |
||
24 | 24 | public function __construct(JsonObject $jsonObject) |
25 | 25 | { |
26 | 26 | $this->queue = new SplQueue(); |
27 | - foreach($jsonObject as $key => $value) { |
|
27 | + foreach ($jsonObject as $key => $value) { |
|
28 | 28 | $this->queue[] = [$key, $value]; |
29 | 29 | $this->total++; |
30 | 30 | } |