Skip to content

Instantly share code, notes, and snippets.

@drupol
Last active April 8, 2020 14:15
Show Gist options
  • Save drupol/118b4f6d6bb2c1dde2ca3cebd99bb0a8 to your computer and use it in GitHub Desktop.
Save drupol/118b4f6d6bb2c1dde2ca3cebd99bb0a8 to your computer and use it in GitHub Desktop.
<?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