浏览代码

Création DeliveryUtils

feature/export_comptable
Guillaume 4 年前
父节点
当前提交
192b4e5784
共有 2 个文件被更改,包括 26 次插入0 次删除
  1. +8
    -0
      ShopBundle/Context/DeliveryUtilsInterface.php
  2. +18
    -0
      ShopBundle/Services/DeliveryUtils.php

+ 8
- 0
ShopBundle/Context/DeliveryUtilsInterface.php 查看文件

@@ -0,0 +1,8 @@
<?php

namespace Lc\ShopBundle\Context ;

interface DeliveryUtilsInterface
{

}

+ 18
- 0
ShopBundle/Services/DeliveryUtils.php 查看文件

@@ -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 ;
}
}

正在加载...
取消
保存