19 lines
265 B
PHP
19 lines
265 B
PHP
<?php
|
|
|
|
namespace App\Charts;
|
|
|
|
use ConsoleTVs\Charts\Classes\Highcharts\Chart;
|
|
|
|
class CommonChart extends Chart
|
|
{
|
|
/**
|
|
* Initializes the chart.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
}
|