Skip to content

Commit 306eff9

Browse files
committed
Remove string directive escaping
1 parent b13aa2b commit 306eff9

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/Directive/Directive.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,6 @@ public static function render(mixed $result): string
8484
return match(true) {
8585
$result === true => '1',
8686
\is_null($result), $result === false => '0',
87-
\is_string($result) => '"' . \addcslashes($result, '"') . '"',
8887
default => (string)$result,
8988
};
9089
}

0 commit comments

Comments
 (0)