<?php
/**
*
* @author Komma <info@komma.pro>
* @copyright (c) 2012-2016, Komma
*/
namespace App\KommaApp\Users\Kms;
use App\KommaApp\Kms\Core\SectionController;
use App\KommaApp\Users\Models\User;
class UserController extends SectionController
{
protected $slug = "user";
protected $forModelName = User::class;
function __construct(UserSection $section)
{
parent::__construct($section);
}
}