mirror of
https://github.com/symfony/recipes-contrib.git
synced 2026-09-12 23:56:29 +03:00
14 lines
180 B
PHP
14 lines
180 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Entity;
|
|
|
|
use Doctrine\ORM\Mapping\Entity;
|
|
use Shopware\AppBundle\Entity\AbstractShop;
|
|
|
|
#[Entity]
|
|
class Shop extends AbstractShop
|
|
{
|
|
}
|