PhpGitHooks\Module\PhpUnit\Infrastructure\Tool\PhpUnitRandomizerProcessor::process PHP Метод

process() публичный Метод

public process ( string $options ) : boolean
$options string
Результат boolean
    public function process($options)
    {
        $tool = sprintf('php %s %s %s', $this->toolPathFinder->find('phpunit-randomizer'), '--order rand', $options);
        $process = new Process($tool);
        return $this->runProcess($process);
    }
PhpUnitRandomizerProcessor