oliverdavies.uk/modules/opd_presentations/src/Repository/PresentationRepositoryInterface.php
2025-06-21 00:42:49 +01:00

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;
}