12345678910111213141516171819202122 |
- <?php
- /**
- * Created by PhpStorm.
- * User: robin
- * Date: 11/23/15
- * Time: 11:44 PM
- */
-
- namespace App\Http\Controller;
-
- use App\Http\Business\CommandsBusiness;
- use App\Http\DBO\CommandsDbo;
- use App\Http\DBO\CommandTypesDbo;
- use Laravel\Lumen\Routing\Controller as BaseController;
-
- class CommandsController extends BaseController
- {
- public function exec(CommandsDbo $command, CommandTypesDbo $type)
- {
- return CommandsBusiness::exec($command, $type);
- }
- }
|