Created
October 5, 2019 05:05
-
-
Save caironm/7881a6aa853645a7c4fbf474bf2e0260 to your computer and use it in GitHub Desktop.
Traits
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 Base { | |
public function digaOla() { | |
echo 'Olá '; | |
} | |
} | |
trait DigaOla { | |
public function digaOla() { | |
parent::digaOla(); | |
echo 'mundo!'; | |
} | |
} | |
class MeuOla extends Base { | |
use DigaOla; | |
} | |
$o = new MeuOla(); | |
$o->digaOla(); | |
// Resultado: Olá mundo! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment