Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
- <?php
-
- namespace Lc\ShopBundle\Services ;
-
- use Doctrine\ORM\EntityManagerInterface;
- use Symfony\Component\Security\Core\Security;
-
- class DeliveryUtils
- {
- protected $em ;
- protected $security ;
-
- public function __construct(EntityManagerInterface $em, Security $security)
- {
- $this->em = $em ;
- $this->security = $security ;
- }
- }
|