mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-25 13:12:22 +01:00
27 lines
444 B
PHP
27 lines
444 B
PHP
<?php
|
|
|
|
namespace Infinito\Attribut;
|
|
|
|
use Infinito\Entity\Source\SourceInterface;
|
|
|
|
/**
|
|
* @author kevinfrantz
|
|
*/
|
|
interface SourceAttributInterface
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
const SOURCE_ATTRIBUT_NAME = 'source';
|
|
|
|
/**
|
|
* @return SourceInterface
|
|
*/
|
|
public function getSource(): SourceInterface;
|
|
|
|
/**
|
|
* @param SourceInterface $source
|
|
*/
|
|
public function setSource(SourceInterface $source): void;
|
|
}
|