mirror of
https://github.com/symfony/recipes-contrib.git
synced 2026-09-12 15:46:52 +03:00
13 lines
165 B
PHP
13 lines
165 B
PHP
<?php
|
|
|
|
namespace App\Entity\Eav;
|
|
|
|
use MsgPhp\Eav\Entity\AttributeValue as BaseAttributeValue;
|
|
|
|
/**
|
|
* @final
|
|
*/
|
|
class AttributeValue extends BaseAttributeValue
|
|
{
|
|
}
|