mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-23 01:01:20 +00:00
11 lines
168 B
PHP
11 lines
168 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Views\Components\Charts;
|
|
|
|
class XYDuration extends ChartsComponent
|
|
{
|
|
protected string $type = 'xy-duration-chart';
|
|
}
|