HummingBirdAnimeClient/src/Aviat/AnimeClient/Model/Stats.php

30 lines
460 B
PHP
Raw Normal View History

<?php
/**
* Anime API Model
*/
2015-09-14 19:54:34 -04:00
namespace Aviat\AnimeClient\Model;
2015-09-17 23:11:18 -04:00
use Avait\Ion\Di\ContainerInterface;
2015-09-15 13:19:29 -04:00
use Aviat\AnimeClient\Model\DB;
2015-09-17 23:11:18 -04:00
/**
* Base Model for stats about lists and collection(s)
*/
class Stats extends DB {
2015-09-17 23:11:18 -04:00
use StatsChartsTrait;
/**
* Constructor
*
* @param Container $container
*/
2015-09-17 23:11:18 -04:00
public function __construct(ContainerInterface $container)
{
parent::__construct($container);
$this->chartSetup();
}
}
// End of Stats.php