@@ -8,7 +8,7 @@ |
||
8 | 8 | { |
9 | 9 | public static function normalize( |
10 | 10 | array $data, |
11 | - int $flags = \JSON_THROW_ON_ERROR | \JSON_NUMERIC_CHECK + \JSON_PRESERVE_ZERO_FRACTION |
|
11 | + int $flags = \JSON_THROW_ON_ERROR | \JSON_NUMERIC_CHECK +\JSON_PRESERVE_ZERO_FRACTION |
|
12 | 12 | ): array { |
13 | 13 | return (array) json_decode((string) json_encode($data, $flags), true, 512, \JSON_THROW_ON_ERROR); |
14 | 14 | } |
@@ -18,7 +18,7 @@ |
||
18 | 18 | |
19 | 19 | public function create(QueryBuilder $qb, string $tableAliasAndColumnName, string $expr): Condition |
20 | 20 | { |
21 | - [$cacheKey,] = CacheKeyGenerator::generate(self::CACHE_KEY, $tableAliasAndColumnName, ['expr' => $expr]); |
|
21 | + [$cacheKey, ] = CacheKeyGenerator::generate(self::CACHE_KEY, $tableAliasAndColumnName, ['expr' => $expr]); |
|
22 | 22 | /** @var Condition|null $condition */ |
23 | 23 | $condition = $this->cache?->get($cacheKey); |
24 | 24 |