for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Charcoal\Cms;
// Module `charcoal-base` dependencies
use \Charcoal\Object\Content;
use \Charcoal\Object\CategoryInterface;
use \Charcoal\Object\CategoryTrait;
class FaqCategory extends Content implements CategoryInterface
loadCategoryItems
{
use CategoryTrait;
/**
* CategoryTrait > item_type()
*
* @return string
*/
public function itemType()
return 'charcoal/cms/faq';
}
* @return Collection
public function loadItems()
return [];