Skip to content

Instantly share code, notes, and snippets.

@gbirke
Last active January 14, 2016 13:23
Show Gist options
  • Save gbirke/cfa141ce18c559a90aef to your computer and use it in GitHub Desktop.
Save gbirke/cfa141ce18c559a90aef to your computer and use it in GitHub Desktop.
Testing the GitHub highlighting algo
<?php
// Testing the GithUb PHP 7 syntax highlighting
// Without the scalar type hint it's ok
function foo( $str = '' ) {
echo "test";
}
// PHP 7 scalar type hints colors the highlight of default value in red
function bar( string $str = '' ) {
echo "test2";
}
function baz( string $str = 'default' ) {
echo "test3";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment