infinito/application/src/Entity/attribut/SourceAttributInterface.php

18 lines
270 B
PHP
Raw Normal View History

2018-09-06 12:58:36 +02:00
<?php
namespace App\Entity\attribut;
use App\Entity\SourceInterface;
/**
*
* @author kevinfrantz
*
*/
interface SourceAttributInterface
{
public function getSource():SourceInterface;
public function setSource(SourceInterface $source):void;
}