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

16 lines
265 B
PHP
Raw Normal View History

2018-09-06 12:58:36 +02:00
<?php
2018-09-12 22:25:22 +02:00
2018-09-24 18:41:26 +02:00
namespace App\Entity\Attribut\Interfaces;
2018-09-06 12:58:36 +02:00
2018-10-03 15:50:46 +02:00
use App\Entity\SourceInterface;
2018-09-06 12:58:36 +02:00
/**
* @author kevinfrantz
*/
interface SourceAttributInterface
{
2018-09-12 22:25:22 +02:00
public function getSource(): SourceInterface;
2018-09-06 12:58:36 +02:00
2018-09-12 22:25:22 +02:00
public function setSource(SourceInterface $source): void;
}