infinito/application/symfony/src/Entity/Attribut/RecieverAttributInterface.php

16 lines
269 B
PHP
Raw Normal View History

2018-09-14 00:18:21 +02:00
<?php
2018-10-03 16:14:15 +02:00
namespace App\Entity\Attribut;
2018-09-14 00:18:21 +02:00
2018-12-14 10:10:28 +01:00
use App\Entity\Source\SourceInterface;
2018-09-14 00:18:21 +02:00
/**
* @author kevinfrantz
*/
interface RecieverAttributInterface
{
2018-12-14 10:10:28 +01:00
public function setReciever(SourceInterface $reciever): void;
2018-09-14 00:18:21 +02:00
2018-12-14 10:10:28 +01:00
public function getReciever(): SourceInterface;
2018-09-14 00:18:21 +02:00
}