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

16 lines
254 B
PHP

<?php
namespace App\Entity\Attribut;
use App\Entity\SourceInterface;
/**
* @author kevinfrantz
*/
interface SourceAttributInterface
{
public function getSource(): SourceInterface;
public function setSource(SourceInterface $source): void;
}