Searched refs:varType (Results 1 – 3 of 3) sorted by relevance
118 $varType = $tokens[($foundVar + 2)]['content'];119 $suggestedType = PHP_CodeSniffer::suggestType($varType);120 if ($varType !== $suggestedType) {124 $varType,
2097 * @param string $varType The variable type to process.2101 public static function suggestType($varType) argument2103 if ($varType === '') {2107 if (in_array($varType, self::$allowedTypes) === true) {2108 return $varType;2110 $lowerVarType = strtolower($varType);2132 if (preg_match($pattern, $varType, $matches) !== 0) {2158 return $varType;
12222 function AstVar(definitions, varType) { argument12224 this.varType = varType;