mirror of
https://github.com/ad-aures/castopod.git
synced 2026-04-04 15:26:43 +02:00
19 lines
395 B
PHP
19 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 = 485;
|
|
|
|
public int $height = 112;
|
|
}
|