Created
October 11, 2017 13:08
-
-
Save igor-ribeiro/47b07ec9ee7cefda73fd9b57cf75f006 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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