15 lines
210 B
PHP
15 lines
210 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace Drupal\opd_presentations\Repository;
|
||
|
|
||
|
interface PresentationRepositoryInterface {
|
||
|
|
||
|
/**
|
||
|
* @return Presentation[]
|
||
|
*/
|
||
|
public function getPublished(): array;
|
||
|
|
||
|
}
|