for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types=1);
namespace Shopware\Psh\Application;
class RuntimeParameters
{
/**
* @var array
*/
private $appParams;
private $overwrites;
private $commands;
public function __construct(
array $appParams,
array $commands,
array $overwrites
) {
$this->appParams = $appParams;
$this->overwrites = $overwrites;
$this->commands = $commands;
}
public function getAppParams(): array
return $this->appParams;
public function getOverwrites(): array
return $this->overwrites;
public function getCommands(): array
return $this->commands;