. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Elements; /** * MULTIMEDIA_FILE_REFERENCE := {Size=1:30} * A complete local or remote file reference to the auxiliary data to be linked * to the GEDCOM context. Remote reference would include a network address * where the multimedia data may be obtained. */ class MultimediaFileReference extends AbstractElement { protected const SUBTAGS = [ 'FORM' => '0:1', 'TITL' => '0:1', ]; }