for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Yoanm\ComposerConfigManager\Domain\Model;
class Script
{
/** @var string */
private $name;
private $command;
/**
* @param string $name
* @param string $command
*/
public function __construct($name, $command)
$this->name = $name;
$this->command = $command;
}
* @return string
public function getName()
return $this->name;
public function getCommand()
return $this->command;