1234567891011121314151617181920212223242526272829 |
- <?php
-
-
- namespace App\Http\Business\Commands;
-
- use App\Http\DBO\CommandsDbo;
-
- abstract class AbstractCommand
- {
-
-
- protected $_command;
-
- public function __construct(CommandsDbo $command)
- {
- $this->_command = $command;
- }
-
-
-
- public abstract function exec();
- }
|