123456789101112131415161718192021222324 |
- <?php
- /**
- * Created by PhpStorm.
- * User: robin
- * Date: 11/24/15
- * Time: 12:15 AM
- */
-
- namespace App\Http\Business\Commands;
-
- class DummyCommand extends AbstractCommand
- {
- /**
- * @return bool
- */
- public function exec()
- {
- $data = $this->_command->getData();
- if (isset($data["Success"]) && !$data["Success"]) {
- abort(500, "Failed to execute command");
- }
- return true;
- }
- }
|