oliverdavies.uk/modules/opd_podcast/src/Guest.php
2025-06-12 02:10:08 +01:00

14 lines
239 B
PHP

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