[Standards] Updated Codebase to reflect new coding standards. See CONTRIBUTING.md for standards.

This commit is contained in:
Thomas Coleman
2014-11-27 16:05:00 +00:00
parent f662352f66
commit 107a4c2a6e
30 changed files with 646 additions and 606 deletions
+10 -8
View File
@@ -1,10 +1,12 @@
<?php
/**
* AKA the Management Panel.
*/
class DashboardController extends Controller {
public function showDashboard() {
return View::make('dashboard.index');
}
}
namespace CachetHQ\Cachet\Controllers;
/**
* AKA the Management Panel.
*/
class DashboardController extends Controller {
public function showDashboard() {
return View::make('dashboard.index');
}
}