Skip to content

Instantly share code, notes, and snippets.

@Djuki
Created February 7, 2013 20:37
Show Gist options
  • Save Djuki/4733957 to your computer and use it in GitHub Desktop.
Save Djuki/4733957 to your computer and use it in GitHub Desktop.
DI with setter method
class Tractor
{
protected $engine;
public function setEngine($engine)
{
$this->engine = $engine;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment