Optimized draft for meta and template informations

This commit is contained in:
Kevin Frantz
2019-01-06 11:32:05 +01:00
parent 77cd11233d
commit 73a8d5f133
17 changed files with 601 additions and 372 deletions

View File

@@ -0,0 +1,22 @@
<?php
namespace App\Domain\SourceManagement;
use App\Domain\EntityManagement\EntityMetaInformation;
/**
* @author kevinfrantz
*/
final class SourceMetaInformation extends EntityMetaInformation implements SourceMetaInformationInterface
{
/**
* {@inheritdoc}
*
* @see \App\Domain\EntityManagement\EntityMetaInformation::setPureName()
*/
protected function setPureName(): void
{
parent::setPureName();
$this->pureName = str_replace('Source', '', $this->pureName);
}
}