Skip to content

Instantly share code, notes, and snippets.

@maykonmeier
Last active August 29, 2015 14:04
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 maykonmeier/ef2eac469b840080fda6 to your computer and use it in GitHub Desktop.
Save maykonmeier/ef2eac469b840080fda6 to your computer and use it in GitHub Desktop.
In block comment
<?php
class Post
{
public function getPost()
{
/*
This code will be ignored because it's commented
$a = 8;
echo $a;
*/
$a = 10;
return $a;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment