Update Cli setup
This commit is contained in:
parent
7d8a207eee
commit
85583503f6
5 changed files with 144 additions and 12 deletions
27
src/Cli/Commands/Commands.php
Normal file
27
src/Cli/Commands/Commands.php
Normal file
|
@ -0,0 +1,27 @@
|
|||
<?php
|
||||
|
||||
namespace Cli\Commands;
|
||||
|
||||
class Commands
|
||||
{
|
||||
|
||||
/**
|
||||
* @var array
|
||||
*/
|
||||
private $args = [];
|
||||
|
||||
/**
|
||||
* Commands constructor.
|
||||
* @param array $args
|
||||
*/
|
||||
public function __construct(array $args)
|
||||
{
|
||||
$this->args = $args;
|
||||
}
|
||||
|
||||
public function handle()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue