mirror of
https://github.com/ad-aures/castopod.git
synced 2026-04-05 15:56:44 +02:00
10 lines
168 B
PHP
10 lines
168 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Views\Components\Charts;
|
|
|
|
class XYDuration extends ChartsComponent
|
|
{
|
|
protected string $type = 'xy-duration-chart';
|
|
}
|