mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-23 01:01:20 +00:00
20 lines
395 B
PHP
20 lines
395 B
PHP
![]() |
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace Config;
|
||
|
|
||
|
use CodeIgniter\Config\BaseConfig;
|
||
|
|
||
|
class Embed extends BaseConfig
|
||
|
{
|
||
|
/**
|
||
|
* --------------------------------------------------------------------------
|
||
|
* Embeddable player config
|
||
|
* --------------------------------------------------------------------------
|
||
|
*/
|
||
|
public int $width = 600;
|
||
|
|
||
|
public int $height = 144;
|
||
|
}
|