halfpastfouram/PHPChartJS

View on GitHub
src/Chart/Doughnut.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Halfpastfour\PHPChartJS\Chart;

/**
 * Class Doughnut
 * @package Halfpastfour\PHPChartJS\Chart
 */
class Doughnut extends Pie
{
    /**
     * The internal type of chart.
     */
    const TYPE = 'doughnut';
}