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

16 lines
254 B
PHP
Raw Normal View History

2018-09-06 12:58:36 +02:00
<?php
2018-09-12 23:25:22 +03:00
2019-01-20 10:41:58 +01:00
namespace App\Attribut;
2018-09-06 12:58:36 +02:00
2018-10-03 16:14:15 +02:00
use App\Entity\Source\SourceInterface;
2018-09-06 12:58:36 +02:00
/**
* @author kevinfrantz
*/
interface SourceAttributInterface
{
2018-09-12 23:25:22 +03:00
public function getSource(): SourceInterface;
2018-09-06 12:58:36 +02:00
2018-09-12 23:25:22 +03:00
public function setSource(SourceInterface $source): void;
}