Você não pode selecionar mais de 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
|
- <?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 ;
- }
- }
|