You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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