Home
last modified time | relevance | path

Searched refs:varType (Results 1 – 3 of 3) sorted by relevance

/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Commenting/
H A DVariableCommentSniff.php118 $varType = $tokens[($foundVar + 2)]['content'];
119 $suggestedType = PHP_CodeSniffer::suggestType($varType);
120 if ($varType !== $suggestedType) {
124 $varType,
/plugin/icalevents/vendor/squizlabs/php_codesniffer/
H A DCodeSniffer.php2097 * @param string $varType The variable type to process.
2101 public static function suggestType($varType) argument
2103 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;
/plugin/processing/
H A Dscript.js12222 function AstVar(definitions, varType) { argument
12224 this.varType = varType;