mirror of
https://github.com/openvk/openvk
synced 2024-12-24 17:41:07 +03:00
9b4c2cee50
This reverts commit faef489220
.
18 lines
349 B
PHP
18 lines
349 B
PHP
<?php declare(strict_types=1);
|
|
namespace openvk\Web\Models\VideoDrivers;
|
|
|
|
abstract class VideoDriver
|
|
{
|
|
protected $id;
|
|
|
|
function __construct(string $id)
|
|
{
|
|
$this->id = $id;
|
|
}
|
|
|
|
abstract function getThumbnailURL(): string;
|
|
|
|
abstract function getURL(): string;
|
|
|
|
abstract function getEmbed(): string;
|
|
}
|