This commit is contained in:
Oliver Davies 2025-06-16 22:17:33 +01:00
parent cddb3af518
commit f08fb4cd67
5 changed files with 50 additions and 14 deletions

View file

@ -0,0 +1,14 @@
<?php
declare(strict_types=1);
namespace Drupal\opd_presentations\Repository;
interface PresentationRepositoryInterface {
/**
* @return Presentation[]
*/
public function getPublished(): array;
}