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

15 lines
210 B
PHP
Raw Normal View History

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