File: D:/HostingSpaces/SBogers10/inzigd.komma.pro/app/Komma/Categories/Kms/CategoryController.php
<?php
namespace App\Komma\Categories\Kms;
/**
* @author Komma <info@komma.pro>
* @copyright (c) 2012-2016, Komma
*/
use App\Komma\Kms\Core\SectionController;
use App\Komma\Categories\Models\Category;
final class CategoryController extends SectionController
{
protected $slug = "categories";
protected $forModelName = Category::class;
function __construct(CategorySection $section)
{
parent::__construct($section);
}
}