Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

DeliveryUtils.php 393B

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