選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

18 行
261B

  1. <?php
  2. namespace Lc\PietroBundle\Factory\Dream;
  3. use App\Entity\Dream\Dream;
  4. use Lc\PietroBundle\Model\Dream\DreamInterface;
  5. class DreamFactory
  6. {
  7. public function create(): DreamInterface
  8. {
  9. $dream = new Dream();
  10. return $dream;
  11. }
  12. }