PHPDoc the methods

This commit is contained in:
James Brooks
2014-12-01 08:38:26 +00:00
parent 13b858a99e
commit 4762864c6f
5 changed files with 29 additions and 5 deletions
+4 -3
View File
@@ -1,9 +1,10 @@
<?php
/**
* AKA the Management Panel.
*/
class DashboardController extends Controller {
/**
* Shows the dashboard view.
* @return \Illuminate\View\View
*/
public function showDashboard() {
return View::make('dashboard.index');
}