Various code cleaning things.

This commit is contained in:
James Cole
2016-02-17 21:14:32 +01:00
parent 6f59e79b28
commit b1c2f8faa1
10 changed files with 29 additions and 13 deletions

View File

@@ -27,11 +27,6 @@ class HomeController extends Controller
parent::__construct();
}
public function displayError() {
throw new FireflyException('A very simple test error.');
}
public function dateRange()
{
$start = new Carbon(Input::get('start'));
@@ -47,6 +42,11 @@ class HomeController extends Controller
Session::put('end', $end);
}
public function displayError()
{
throw new FireflyException('A very simple test error.');
}
/**
* @return \Illuminate\Http\RedirectResponse
*/