src/ShoppingBundle/Entity/ShopConfiguration.php line 14

Open in your IDE?
  1. <?php
  2. namespace Shopping\Entity;
  3. use Core\Entity\Enum;
  4. use Core\Entity\Traits\EntityTrait;
  5. use Doctrine\ORM\Mapping as ORM;
  6. /**
  7.  * @ORM\Entity(repositoryClass="Shopping\Repository\ShopConfigurationRepository")
  8.  * @ORM\Table(name="shopping_configuration")
  9.  */
  10. class ShopConfiguration
  11. {
  12.     use EntityTrait {
  13.         EntityTrait::__construct as private __entityConstruct;
  14.     }
  15.     /**
  16.      * Constructeur
  17.      * @throws \Exception
  18.      */
  19.     public function __construct()
  20.     {
  21.         $this->__entityConstruct();
  22.     }
  23. }