oliverdavies.uk/modules/opd_presentations/src/Repository/PresentationRepositoryInterface.php

17 lines
254 B
PHP
Raw Normal View History

2025-06-16 22:17:33 +01:00
<?php
declare(strict_types=1);
namespace Drupal\opd_presentations\Repository;
2025-06-21 00:42:49 +01:00
use Drupal\opd_presentations\Presentation;
2025-06-16 22:17:33 +01:00
interface PresentationRepositoryInterface {
/**
* @return Presentation[]
*/
public function getPublished(): array;
}