mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-10 22:37:28 +01:00
41 lines
573 B
PHP
41 lines
573 B
PHP
|
<?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
|
||
|
{}
|
||
|
|
||
|
}
|