<?php
namespace App\KommaApp\Tags\Kms;
/**
* @author Komma <info@komma.pro>
* @copyright (c) 2012-2016, Komma
*/
use App\KommaApp\Tags\Models\Tag;
use App\KommaApp\Kms\Core\SectionController;
class TagController extends SectionController
{
protected $slug = "tags";
protected $forModelName = Tag::class;
function __construct(TagSection $section)
{
parent::__construct($section);
}
}