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