for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @copyright Visma Digital Commerce AS 2019
* @license Proprietary
* @author Marcus Pettersen Irgens <[email protected]>
*/
namespace Stecman\Component\Symfony\Console\BashCompletion\Completion;
class CompletionResult implements CompletionResultInterface
{
* @var string[]
private $values;
* @var bool
private $descriptive;
public function __construct(
$values,
$descriptive = false
) {
$this->values = $values;
$this->descriptive = $descriptive;
}
* @return bool
public function isDescriptive()
return $this->descriptive;
* @return string[]
public function getValues()
return $this->values;