mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-03-14 10:55:17 +01:00
18 lines
256 B
PHP
18 lines
256 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;
|
|
}
|
|
|