You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CommandsController.php 472B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: robin
  5. * Date: 11/23/15
  6. * Time: 11:44 PM
  7. */
  8. namespace App\Http\Controller;
  9. use App\Http\Business\CommandsBusiness;
  10. use App\Http\DBO\CommandsDbo;
  11. use App\Http\DBO\CommandTypesDbo;
  12. use Laravel\Lumen\Routing\Controller as BaseController;
  13. class CommandsController extends BaseController
  14. {
  15. public function exec(CommandsDbo $command, CommandTypesDbo $type)
  16. {
  17. return CommandsBusiness::exec($command, $type);
  18. }
  19. }