Update Cli setup

This commit is contained in:
Maarten 2019-12-24 01:54:04 +01:00
parent 7d8a207eee
commit 85583503f6
5 changed files with 144 additions and 12 deletions

View 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()
{
}
}