mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-03-14 10:55:17 +01:00
14 lines
233 B
PHP
14 lines
233 B
PHP
<?php
|
|
|
|
namespace Entity\Attribut;
|
|
|
|
/**
|
|
* @author kevinfrantz
|
|
*/
|
|
interface ParentAttributInterface
|
|
{
|
|
public function setParent(ParentAttributInterface $parent): void;
|
|
|
|
public function getParent(): ParentAttributInterface;
|
|
}
|