Skip to content

Instantly share code, notes, and snippets.

@Djuki
Last active December 12, 2015 05:38
Show Gist options
  • Save Djuki/4722817 to your computer and use it in GitHub Desktop.
Save Djuki/4722817 to your computer and use it in GitHub Desktop.
use DI\Annotations\Inject;
class Foo {
/**
* @Inject
* @var Bar
*/
private $bar;
public function __construct() {
// The dependency is injected
return $this->bar->sayHello();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment