Renamed TypeAttribut to CrudAttribut

This commit is contained in:
Kevin Frantz
2019-01-16 21:22:18 +01:00
parent 665f0044cc
commit 93bf246915
28 changed files with 113 additions and 107 deletions

View File

@@ -119,9 +119,9 @@ final class TemplatePathInformation implements TemplatePathInformationInterface
/**
* {@inheritdoc}
*
* @see \App\Domain\TemplateManagement\TemplatePathInformationInterface::getType()
* @see \App\Domain\TemplateManagement\TemplatePathInformationInterface::getCrud()
*/
public function getType(): string
public function getCrud(): string
{
return $this->type;
}

View File

@@ -26,5 +26,5 @@ interface TemplatePathInformationInterface extends ReloadTypeInterface
*
* @return string Type of the template
*/
public function getType(): string;
public function getCrud(): string;
}