Skip to content

Instantly share code, notes, and snippets.

@asgrim
Last active June 30, 2017 12:16
Show Gist options
  • Save asgrim/69ecf07e94c92d64c28b1c27a20eb01b to your computer and use it in GitHub Desktop.
Save asgrim/69ecf07e94c92d64c28b1c27a20eb01b to your computer and use it in GitHub Desktop.
<?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