Skip to content

Instantly share code, notes, and snippets.

@lividgreen
Created February 27, 2014 21:06
Show Gist options
  • Save lividgreen/9259576 to your computer and use it in GitHub Desktop.
Save lividgreen/9259576 to your computer and use it in GitHub Desktop.
<?php
class Service {
/**
* @di
* @var DepType $dep
*
*/
protected $dep;
public function __construct() {
/* Added */
$this->dep = DI::init();
/* Next is left unchanged */
/* ... */
}
}
DI:
S1:
class: Service
deps:
dep: DepType1
S2:
class: Service
deps:
dep: DepType2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment