<?php
/**
*
* @author Komma <info@komma.pro>
* @copyright (c) 2012-2016, Komma
*/
namespace App\Komma\Sites\Kms;
use App\Komma\Kms\Core\SectionController;
use App\Komma\Sites\Models\Site;
final class SiteController extends SectionController
{
protected $slug = "sites";
protected $forModelName = Site::class;
function __construct(SiteSection $section)
{
parent::__construct($section);
}
}