infinito/application/src/Entity/Attribut/NodeAttributInterface.php
Marco Petersen f1b9ffd160 Format code
2018-09-12 23:25:22 +03:00

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;
}