Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

18 lines
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. }