mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2026-01-09 00:32:15 +00:00
Optimized draft for meta and template informations
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user