Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

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