File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 1919 */
2020interface Database
2121{
22- public const SERVER_TIMESTAMP = ['.sv ' => 'timestamp ' ];
22+ /**
23+ * @var array{'.sv': 'timestamp'}
24+ */
25+ public const array SERVER_TIMESTAMP = ['.sv ' => 'timestamp ' ];
2326
2427 /**
2528 * Returns a Reference to the root or the specified path.
Original file line number Diff line number Diff line change 1515 */
1616final class Normalizer
1717{
18- private const DEFAULT_JSON_OPTIONS = JSON_UNESCAPED_SLASHES
18+ private const int DEFAULT_JSON_OPTIONS = JSON_UNESCAPED_SLASHES
1919 | JSON_UNESCAPED_UNICODE
2020 | JSON_UNESCAPED_SLASHES
2121 | JSON_UNESCAPED_UNICODE
@@ -64,7 +64,7 @@ public function toArray(mixed $value): array
6464 }
6565
6666 /**
67- * @param int $options JSON encoding options
67+ * @param int|null $options JSON encoding options
6868 *
6969 * @return non-empty-string
7070 */
You can’t perform that action at this time.
0 commit comments