mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-13 13:57:10 +02:00
Controller and Entity draft
This commit is contained in:
19
application/src/Entity/SourceInterface.php
Normal file
19
application/src/Entity/SourceInterface.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
namespace App\Entity;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author kevinfrantz
|
||||
*
|
||||
*/
|
||||
interface SourceInterface
|
||||
{
|
||||
public function setId(int $id):void;
|
||||
|
||||
public function getId():int;
|
||||
|
||||
public function setNode(NodeInterface $node):void;
|
||||
|
||||
public function getNode():NodeInterface;
|
||||
}
|
||||
|
Reference in New Issue
Block a user