We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
file_get_contents
quickdump.php
1 parent 25877ed commit 64f524dCopy full SHA for 64f524d
bin/quickdump.php
@@ -3,13 +3,15 @@
3
4
declare(strict_types=1);
5
6
+use function Safe\file_get_contents;
7
+
8
/**
9
* This script is used for generating the examples in the README.
10
*/
11
12
require_once(__DIR__ . '/../vendor/autoload.php');
13
-$sSource = \file_get_contents('php://stdin');
14
+$sSource = file_get_contents('php://stdin');
15
$oParser = new Sabberworm\CSS\Parser($sSource);
16
17
$oDoc = $oParser->parse();
0 commit comments