Last active
April 8, 2020 14:15
-
-
Save drupol/118b4f6d6bb2c1dde2ca3cebd99bb0a8 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 FooBar implements FooInterface, BarInterface { | |
public function __construct(FooInterface $foo, BarInterface $bar) {} | |
public function izumi() { | |
return $this->foo->izumi(); | |
} | |
public function nakano() { | |
return $this->bar->nakano(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment