@@ -0,0 +1,8 @@ | |||
<?php | |||
namespace Lc\ShopBundle\Context ; | |||
interface DeliveryUtilsInterface | |||
{ | |||
} |
@@ -0,0 +1,18 @@ | |||
<?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 ; | |||
} | |||
} |