Skip to content

Instantly share code, notes, and snippets.

@jonnybarnes
Last active September 20, 2018 08:47
Show Gist options
  • Save jonnybarnes/3a789fcaa7b1bbb8124e2a11503c65f0 to your computer and use it in GitHub Desktop.
Save jonnybarnes/3a789fcaa7b1bbb8124e2a11503c65f0 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