for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* ResultList implementation for TV shows
*
* @author Sam Stenvall <[email protected]>
* @copyright Copyright © Sam Stenvall 2014-
* @license https://www.gnu.org/licenses/gpl.html The GNU General Public License v3.0
*/
class ResultListTVShows extends ResultList
{
public function getColumnDefinitions()
return array(
$this->getLabelColumn(),
$this->getYearColumn(),
$this->getGenreColumn(),
);
}