File: D:/HostingSpaces/netwerkbrabant/netwerkbrabant.nl/app/KommaApp/Magazines/Kms/MagazineController.php
<?php
namespace App\KommaApp\Magazines\Kms;
/**
* @author Komma <info@komma.pro>
* @copyright (c) 2012-2016, Komma
*/
use App\KommaApp\Forms\Models\Request;
use App\KommaApp\Kms\Core\SectionController;
use App\KommaApp\Kms\Core\Tree\TreeService;
use App\KommaApp\Magazines\Models\Magazine;
class MagazineController extends SectionController
{
protected $slug = "magazines";
protected $forModelName = Magazine::class;
/**
* Constructor
* @param MagazineSection $section
*/
public function __construct(MagazineSection $section)
{
parent::__construct($section);
}
}