@@ -4,7 +4,7 @@ discard block |
||
4 | 4 | * Distributed under the MIT License (http://opensource.org/licenses/MIT) |
5 | 5 | */ |
6 | 6 | |
7 | -declare(strict_types=1); |
|
7 | +declare(strict_types = 1); |
|
8 | 8 | |
9 | 9 | namespace Tebru\Gson\Internal\Data; |
10 | 10 | |
@@ -123,7 +123,7 @@ discard block |
||
123 | 123 | public function create(TypeToken $phpType): PropertyCollection |
124 | 124 | { |
125 | 125 | $class = $phpType->getRawType(); |
126 | - $key = 'gson.properties.'.\str_replace('\\', '', $class); |
|
126 | + $key = 'gson.properties.' . \str_replace('\\', '', $class); |
|
127 | 127 | |
128 | 128 | $data = $this->cache->get($key); |
129 | 129 | if ($data !== null) { |