Skip to content

Commit

Permalink
Remove string debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
kylekatarnls committed Nov 8, 2020
1 parent 6422e2c commit 8bfe1d0
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions tests/Phug/RendererTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -1345,13 +1345,7 @@ public function testIssetCompatibility()

$handleCode = static function (array $lines) use ($jsPhpizeAtLeastTwo) {
$code = implode("\n", array_map(static function ($line) {
try {
return (string) $line;
} catch (Throwable $e) {
var_dump($line);
echo $e->getTraceAsString();
exit;
}
return (string) $line;
}, $lines));

if ($jsPhpizeAtLeastTwo) {
Expand Down

0 comments on commit 8bfe1d0

Please sign in to comment.