for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Jellyfish\Console;
use ArrayObject;
class ConsoleFactory
{
/**
* @var \ArrayObject
*/
protected $commandList;
* @return \ArrayObject
public function getCommandList(): ArrayObject {
if ($this->commandList === null) {
$this->commandList = new ArrayObject();
}
return $this->commandList;