<?php
/**
*
*
* @author Komma <info@komma.pro>
* @copyright (c) 2012-2016, Komma Mediadesign
*/
namespace KommaApp\Kms\Core;
use Illuminate\Routing\Controller;
class KmsController extends Controller
{
protected $kms;
function __construct(Kms $kms)
{
//Authentication, check if the user is logged in
$this->middleware('auth:user');
$this->kms = $kms;
}
}