Add initial PresentationCounter logic

This commit is contained in:
Oliver Davies 2025-06-09 00:51:41 +01:00
parent bf8017c477
commit 1fe63e7326
4 changed files with 69 additions and 0 deletions

View file

@ -0,0 +1,13 @@
<?php
declare(strict_types=1);
namespace Drupal\opd_presentations;
final class PresentationCounter {
public function getCount(): int {
return 1;
}
}