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;
/**
* Document category.
*/
final class DocumentCategory extends Content implements CategoryInterface
{
use CategoryTrait;
* CategoryTrait > itemType()
*
* @return string
public function itemType()
return 'charcoal/cms/document';
}
* @return Collection
public function loadCategoryItems()
return [];