GermanAirlinesVA-Schooling/controllers/ExamTyperatingAnswer.php

19 lines
463 B
PHP

<?php namespace GermanAirlinesVa\Schooling\Controllers;
use Backend\Classes\Controller;
class ExamTyperatingAnswer extends Controller
{
public $implement = ['Backend\Behaviors\ListController', 'Backend\Behaviors\FormController'];
public $listConfig = 'config_list.yaml';
public $formConfig = 'config_form.yaml';
public $requiredPermissions = ['germanairlinesva.schooling.master'];
public function __construct()
{
parent::__construct();
}
}