Last active
June 30, 2017 12:16
-
-
Save asgrim/69ecf07e94c92d64c28b1c27a20eb01b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class x { | |
async public function highlightFileContents($path) : string { | |
$source = await Amp\File\get($path); | |
return highlight_string($source, true); | |
} | |
} | |
$highlighted = Amp\wait((new x())->highlightFileContents("helpers.php")); | |
var_dump($highlighted); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment