예제 #1
0
파일: Make.php 프로젝트: sleimanx2/plastic
 /**
  * Reset constructor.
  *
  * @param Creator  $creator
  * @param Composer $composer
  */
 public function __construct(Creator $creator, Composer $composer)
 {
     parent::__construct();
     $this->creator = $creator;
     $this->composer = $composer;
 }
예제 #2
0
파일: Run.php 프로젝트: sleimanx2/plastic
 /**
  * Reset constructor.
  *
  * @param Mapper $mapper
  */
 public function __construct(Mapper $mapper)
 {
     parent::__construct();
     $this->mapper = $mapper;
 }