Skip to content

Instantly share code, notes, and snippets.

@igor-ribeiro
Created October 11, 2017 13:08
Show Gist options
  • Select an option

  • Save igor-ribeiro/47b07ec9ee7cefda73fd9b57cf75f006 to your computer and use it in GitHub Desktop.

Select an option

Save igor-ribeiro/47b07ec9ee7cefda73fd9b57cf75f006 to your computer and use it in GitHub Desktop.
<?php
class Test
{
public static function name()
{
return 'Igor';
}
public function getName()
{
return $this->name();
}
}
$test = new Test;
echo $test->getName();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment