8000 CS fix · symfony/symfony@297c3d7 · GitHub
[go: up one dir, main page]

Skip to content

Commit 297c3d7

Browse files
CS fix
1 parent 5df2a72 commit 297c3d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/VarExporter/Internal/Exporter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ public static function prepare($values, $objectsPool, &$refsPool, &$objectsCount
110110
$arrayValue = (array) $value;
111111
} elseif ($value instanceof \Serializable
112112
|| $value instanceof \__PHP_Incomplete_Class
113-
|| PHP_VERSION_ID < 80200 && $value instanceof \DatePeriod
113+
|| \PHP_VERSION_ID < 80200 && $value instanceof \DatePeriod
114114
) {
115115
++$objectsCount;
116116
$objectsPool[$value] = [$id = \count($objectsPool), serialize($value), [], 0];

0 commit comments

Comments
 (0)
0