Skip to content

Commit 16993a7

Browse files
committed
chore: cleanup
1 parent 5b70678 commit 16993a7

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/Comment.php

+3-4
Original file line numberDiff line numberDiff line change
@@ -203,9 +203,8 @@ public static function parse(string $json, bool $assoc = false, int $depth = 512
203203

204204
public static function parseFromFile(string $file, bool $assoc = false, int $depth = 512, int $options = 0)
205205
{
206-
$json = file_get_contents($file);
207-
echo "\n";
208-
// echo (new static)->strip($json);
209-
return static::parse(trim($json), $assoc, $depth, $options);
206+
$json = \file_get_contents($file);
207+
208+
return static::parse(\trim($json), $assoc, $depth, $options);
210209
}
211210
}

0 commit comments

Comments
 (0)