14 lines
239 B
PHP
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';
|
|
|
|
}
|