diff options
author | Camil Staps | 2016-01-22 12:01:33 +0100 |
---|---|---|
committer | Camil Staps | 2016-01-22 12:01:33 +0100 |
commit | 3a74377e861c1a401f1dffbd595f547e04eb72c8 (patch) | |
tree | 505649f58784ed0e318cb46f28777173bcdc6b90 /app/Http/Controllers/ExampleController.php |
Initial commitlumen-app
Diffstat (limited to 'app/Http/Controllers/ExampleController.php')
-rw-r--r-- | app/Http/Controllers/ExampleController.php | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/app/Http/Controllers/ExampleController.php b/app/Http/Controllers/ExampleController.php new file mode 100644 index 0000000..aab066e --- /dev/null +++ b/app/Http/Controllers/ExampleController.php @@ -0,0 +1,18 @@ +<?php + +namespace App\Http\Controllers; + +class ExampleController extends Controller +{ + /** + * Create a new controller instance. + * + * @return void + */ + public function __construct() + { + // + } + + // +} |