feat: Initial commit
This commit is contained in:
12
lib/AbstractConsole.php
Normal file
12
lib/AbstractConsole.php
Normal file
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
namespace Aerex\BaikalStorage;
|
||||
|
||||
abstract class AbstractConsole {
|
||||
|
||||
function __construct($defaultArgs) {
|
||||
$this->defaultArgs = $defaultArgs;
|
||||
}
|
||||
|
||||
abstract protected function execute($cmd, $args, $input = null);
|
||||
}
|
Reference in New Issue
Block a user