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

18 行
393B

  1. <?php
  2. namespace Lc\ShopBundle\Services ;
  3. use Doctrine\ORM\EntityManagerInterface;
  4. use Symfony\Component\Security\Core\Security;
  5. class DeliveryUtils
  6. {
  7. protected $em ;
  8. protected $security ;
  9. public function __construct(EntityManagerInterface $em, Security $security)
  10. {
  11. $this->em = $em ;
  12. $this->security = $security ;
  13. }
  14. }