Lines Matching refs:values
69 $this->values['svnArgs'][] = escapeshellarg($arg);
77 * @param array $values An array of values determined from CLI args.
82 public function process($values=array())
84 if (empty($values) === true) {
85 $values = $this->getCommandLineValues();
87 $values = array_merge($this->getDefaults(), $values);
88 $this->values = $values;
92 $command = PHP_CODESNIFFER_SVNLOOK.' changed '.implode(' ', $values['svnArgs']);
109 $values['standard'] = $this->validateStandard($values['standard']);
110 foreach ($values['standard'] as $standard) {
121 $values['verbosity'],
122 $values['tabWidth'],
123 $values['encoding']
128 if (empty($values['extensions']) === false) {
129 $phpcs->setAllowedFileExtensions($values['extensions']);
135 if (empty($values['ignored']) === false) {
136 $phpcs->setIgnorePatterns($values['ignored']);
140 if ($values['errorSeverity'] === null) {
143 $this->errorSeverity = $values['errorSeverity'];
146 if ($values['warningSeverity'] === null) {
149 $this->warningSeverity = $values['warningSeverity'];
152 if (empty($values['reports']) === true) {
153 $this->values['reports']['full'] = $values['reportFile'];
158 $phpcs->initStandard($values['standard'], $values['sniffs']);
175 …$command = PHP_CODESNIFFER_SVNLOOK.' cat '.implode(' ', $values['svnArgs']).' '.escapeshellarg($pa…
190 $values['reports'],
191 $values['showSources'],
192 $values['reportFile'],
193 $values['reportWidth']