mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-04-16 10:16:22 +02:00
16 lines
240 B
PHP
16 lines
240 B
PHP
<?php
|
|
|
|
namespace App\Entity\Attribut;
|
|
|
|
use App\Entity\NodeInterface;
|
|
|
|
/**
|
|
* @author kevinfrantz
|
|
*/
|
|
interface NodeAttributInterface
|
|
{
|
|
public function setNode(NodeInterface $node): void;
|
|
|
|
public function getNode(): NodeInterface;
|
|
}
|