Controller and Entity draft

This commit is contained in:
Kevin Frantz
2018-09-05 15:46:14 +02:00
parent 3a4f3f6654
commit 8ead5a5df4
17 changed files with 377 additions and 0 deletions

View 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
{}
}