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