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