diff options
Diffstat (limited to 'infrastructure/Http/Controller.php')
-rw-r--r-- | infrastructure/Http/Controller.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/infrastructure/Http/Controller.php b/infrastructure/Http/Controller.php new file mode 100644 index 0000000..aa567b9 --- /dev/null +++ b/infrastructure/Http/Controller.php @@ -0,0 +1,10 @@ +<?php + +namespace Infrastructure\Http; + +use Illuminate\Foundation\Validation\ValidatesRequests; +use Optimus\Bruno\LaravelController; + +abstract class Controller extends LaravelController +{ +} |