Removed middle ware.

This commit is contained in:
James Cole
2016-01-09 07:48:45 +01:00
parent 9fcb00f10b
commit 4bc1c032bd
20 changed files with 9 additions and 22 deletions

View File

@@ -3,14 +3,14 @@
namespace FireflyIII\Http\Controllers;
use App;
use Auth;
use Carbon\Carbon;
use Illuminate\Foundation\Auth\Access\AuthorizesRequests;
use Illuminate\Foundation\Bus\DispatchesJobs;
use Illuminate\Foundation\Validation\ValidatesRequests;
use Illuminate\Routing\Controller as BaseController;
use View;
use Auth;
use Preferences;
use Carbon\Carbon;
use View;
/**
* Class Controller
@@ -21,6 +21,12 @@ class Controller extends BaseController
{
use AuthorizesRequests, DispatchesJobs, ValidatesRequests;
/** @var string|\Symfony\Component\Translation\TranslatorInterface */
protected $monthFormat;
/** @var string|\Symfony\Component\Translation\TranslatorInterface */
protected $monthAndDayFormat;
/**
* Controller constructor.
*/