mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-10 22:37:28 +01:00
14 lines
195 B
PHP
14 lines
195 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Entity\Attribut;
|
||
|
|
||
|
/**
|
||
|
* @author kevinfrantz
|
||
|
*/
|
||
|
interface CrudAttributInterface
|
||
|
{
|
||
|
public function setCrud(string $crud): void;
|
||
|
|
||
|
public function getCrud(): string;
|
||
|
}
|