Parcourir la source

Création DeliveryUtils

feature/export_comptable
Guillaume il y a 4 ans
Parent
révision
192b4e5784
2 fichiers modifiés avec 26 ajouts et 0 suppressions
  1. +8
    -0
      ShopBundle/Context/DeliveryUtilsInterface.php
  2. +18
    -0
      ShopBundle/Services/DeliveryUtils.php

+ 8
- 0
ShopBundle/Context/DeliveryUtilsInterface.php Voir le fichier

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

namespace Lc\ShopBundle\Context ;

interface DeliveryUtilsInterface
{

}

+ 18
- 0
ShopBundle/Services/DeliveryUtils.php Voir le fichier

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

Chargement…
Annuler
Enregistrer