Skip to content

Instantly share code, notes, and snippets.

@jonnybarnes
Last active September 20, 2018 08:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jonnybarnes/25c3a14b19dbfd69f72b1b6a4fa0d09a to your computer and use it in GitHub Desktop.
Save jonnybarnes/25c3a14b19dbfd69f72b1b6a4fa0d09a to your computer and use it in GitHub Desktop.
<?php
class Foo
{
public static function bar(bool $input)
{
if ($input === true) {
$variable = <<<TOKEN
Hello
World!
TOKEN;
echo $variable;
}
}
}
Foo::bar(true);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment