File: D:/HostingSpaces/netwerkbrabant/netwerkbrabant.nl/app/KommaApp/Questions/Kms/QuestionController.php
<?php
namespace App\KommaApp\Questions\Kms;
/**
* @author Komma <info@komma.pro>
* @copyright (c) 2012-2016, Komma
*/
use App\KommaApp\Kms\Core\SectionController;
use App\KommaApp\Questions\Models\Question;
class QuestionController extends SectionController
{
protected $slug = "questions";
protected $forModelName = Question::class;
/**
* Constructor
* @param QuestionSection $section
*/
public function __construct(QuestionSection $section)
{
parent::__construct($section);
}
}