Update MsgPhp bundles to v0.1

This commit is contained in:
Roland Franssen
2018-01-19 11:25:15 +01:00
parent ca7e85815c
commit 8138825222
8 changed files with 12 additions and 16 deletions
@@ -1,13 +0,0 @@
<?php
use MsgPhp\Eav\Entity\{Attribute, AttributeValue};
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
return function (ContainerConfigurator $container) {
$container->extension('msgphp_eav', [
'class_mapping' => [
Attribute::class => \App\Entity\Eav\Attribute::class,
AttributeValue::class => \App\Entity\Eav\AttributeValue::class,
],
]);
};
-9
View File
@@ -1,9 +0,0 @@
{
"bundles": {
"MsgPhp\\EavBundle\\MsgPhpEavBundle": ["all"]
},
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/",
"src/": "%SRC_DIR%/"
}
}
@@ -1,12 +0,0 @@
<?php
namespace App\Entity\Eav;
use MsgPhp\Eav\Entity\Attribute as BaseAttribute;
/**
* @final
*/
class Attribute extends BaseAttribute
{
}
@@ -1,12 +0,0 @@
<?php
namespace App\Entity\Eav;
use MsgPhp\Eav\Entity\AttributeValue as BaseAttributeValue;
/**
* @final
*/
class AttributeValue extends BaseAttributeValue
{
}