コード例 #1
0
ファイル: DefaultBuilder.php プロジェクト: xideapl/book
 /**
  * {@inheritdoc}
  */
 public function create()
 {
     $this->book = $this->factory->create();
     return $this;
 }
コード例 #2
0
ファイル: DefaultBuilder.php プロジェクト: xideapl/user
 /**
  * {@inheritdoc}
  */
 public function create()
 {
     $this->user = $this->factory->create();
 }
コード例 #3
0
ファイル: DefaultBuilder.php プロジェクト: xideapl/product
 /**
  * {@inheritdoc}
  */
 public function create()
 {
     $this->product = $this->factory->create();
     return $this;
 }