This commit is contained in:
Oliver Davies 2025-06-12 02:10:08 +01:00
parent 9308ce76a5
commit 51299096c5
5 changed files with 48 additions and 29 deletions

View file

@ -0,0 +1,14 @@
<?php
declare(strict_types=1);
namespace Drupal\opd_podcast;
use Drupal\taxonomy\Entity\Term;
use Drupal\taxonomy\TermInterface;
final class Guest extends Term implements TermInterface {
public const TERM_TYPE = 'podcast_guest';
}