Home
last modified time | relevance | path

Searched refs:currScope (Results 1 – 12 of 12) sorted by last modified time

/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR1/Sniffs/Methods/
H A DCamelCapsMethodNameSniff.php42 * @param int $currScope The position of the current scope.
46 … protected function processTokenWithinScope(PHP_CodeSniffer_File $phpcsFile, $stackPtr, $currScope) argument
67 $className = $phpcsFile->getDeclarationName($currScope);
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Classes/
H A DSelfMemberReferenceSniff.php59 * @param int $currScope The current scope opener token.
63 … protected function processTokenWithinScope(PHP_CodeSniffer_File $phpcsFile, $stackPtr, $currScope) argument
85 $fullQualifiedClassName = $this->getNamespaceOfScope($phpcsFile, $currScope);
92 $fullQualifiedClassName .= $phpcsFile->getDeclarationName($currScope);
94 $declarationName = $phpcsFile->getDeclarationName($currScope);
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Scope/
H A DMethodScopeSniff.php51 * @param int $currScope The current scope opener token.
55 … protected function processTokenWithinScope(PHP_CodeSniffer_File $phpcsFile, $stackPtr, $currScope) argument
H A DStaticThisUsageSniff.php55 * @param int $currScope A pointer to the start of the scope.
59 public function processTokenWithinScope(PHP_CodeSniffer_File $phpcsFile, $stackPtr, $currScope) argument
69 $classOpener = $tokens[$currScope]['scope_condition'];
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/
H A DAbstractScopeSniff.php168 * @param int $currScope The position in the tokens array that
177 $currScope argument
H A DAbstractVariableSniff.php94 * @param array $currScope The current scope opener token.
101 $currScope argument
125 || $tokens[$currScope]['code'] === T_INTERFACE
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/NamingConventions/
H A DValidFunctionNameSniff.php85 * @param int $currScope The position of the current scope.
89 … protected function processTokenWithinScope(PHP_CodeSniffer_File $phpcsFile, $stackPtr, $currScope) argument
97 $className = $phpcsFile->getDeclarationName($currScope);
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR2/Sniffs/Methods/
H A DMethodDeclarationSniff.php51 * @param int $currScope The current scope opener token.
55 … protected function processTokenWithinScope(PHP_CodeSniffer_File $phpcsFile, $stackPtr, $currScope) argument
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Commenting/
H A DFunctionCommentThrowTagSniff.php56 * @param int $currScope The current scope opener token.
60 … protected function processTokenWithinScope(PHP_CodeSniffer_File $phpcsFile, $stackPtr, $currScope) argument
64 $previousThrow = $phpcsFile->findPrevious(T_THROW, ($stackPtr - 1), $currScope);
74 $commentEnd = $phpcsFile->findPrevious($find, ($currScope - 1), null, true);
87 $currScopeEnd = $tokens[$currScope]['scope_closer'];
149 $tokens[$currScope]['scope_opener'],
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/NamingConventions/
H A DCamelCapsFunctionNameSniff.php113 * @param int $currScope The position of the current scope.
117 … protected function processTokenWithinScope(PHP_CodeSniffer_File $phpcsFile, $stackPtr, $currScope) argument
125 $className = $phpcsFile->getDeclarationName($currScope);
H A DConstructorNameSniff.php68 * @param int $currScope A pointer to the start of the scope.
75 $currScope argument
77 $className = $phpcsFile->getDeclarationName($currScope);
79 $this->loadFunctionNamesInScope($phpcsFile, $currScope);
97 $parentClassName = $phpcsFile->findExtendedClassName($currScope);
127 * @param int $currScope A pointer to the start of the scope.
131 protected function loadFunctionNamesInScope(PHP_CodeSniffer_File $phpcsFile, $currScope) argument
136 …for ($i = ($tokens[$currScope]['scope_opener'] + 1); $i < $tokens[$currScope]['scope_closer']; $i+…
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/Channels/
H A DIncludeSystemSniff.php74 * @param integer $currScope The current scope opener token.
81 $currScope argument
129 for ($i = ($currScope + 1); $i < $stackPtr; $i++) {
144 $condPtr = $currScope;