for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PhpSchool\CliMenu\Input;
/**
* @author Aydin Hassan <[email protected]>
*/
class InputResult
{
* @var string
private $input;
public function __construct(string $input)
$this->input = $input;
}
public function fetch() : string
return $this->input;