wxt-8.x-3.011/modules/custom/wxt_ext/wxt_ext_media_video/src/Plugin/media/Source/VideoFile.php
modules/custom/wxt_ext/wxt_ext_media_video/src/Plugin/media/Source/VideoFile.php
<?php
namespace Drupal\wxt_ext_media_video\Plugin\media\Source;
use Drupal\wxt_ext_media\FileInputExtensionMatchTrait;
use Drupal\wxt_ext_media\InputMatchInterface;
use Drupal\media\Plugin\media\Source\VideoFile as CoreVideoFile;
/**
* Input-matching version of the VideoFile media source.
*
* Leveraged from code provided by Acquia for the Lightning distribution.
*/
class VideoFile extends CoreVideoFile implements InputMatchInterface {
use FileInputExtensionMatchTrait;
}
