mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-04-18 10:59:21 +02:00
20 lines
379 B
PHP
20 lines
379 B
PHP
<?php
|
|
|
|
namespace App\Domain\SecureLoadManagement;
|
|
|
|
use App\Entity\Source\SourceInterface;
|
|
use Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException;
|
|
|
|
/**
|
|
* @author kevinfrantz
|
|
*/
|
|
interface SecureSourceLoaderInterface
|
|
{
|
|
/**
|
|
* @throws AccessDeniedHttpException
|
|
*
|
|
* @return SourceInterface
|
|
*/
|
|
public function getSource(): SourceInterface;
|
|
}
|