<?php
namespace App\Komma\Files\Kms;
/**
* @author Komma <info@komma.pro>
* @copyright (c) 2012-2016, Komma
*/
use App\Komma\Files\Models\File;
use App\Komma\Kms\Core\SectionController;
class FileController extends SectionController
{
protected $slug = 'files';
protected $forModelName = File::class;
public function __construct(FileSection $section)
{
parent::__construct($section);
}
}