array( 0 => array( 'name' => 'age', '7.4' => false, 'callback' => 'curlVersionInvalidValue', ), ), 'define' => array( 2 => array( 'name' => 'case_insensitive', '7.3' => false, // Slated for removal in PHP 8.0.0. ), ), 'gmmktime' => array( 6 => array( 'name' => 'is_dst', '5.1' => false, '7.0' => true, ), ), 'ldap_first_attribute' => array( 2 => array( 'name' => 'ber_identifier', '5.2.4' => true, ), ), 'ldap_next_attribute' => array( 2 => array( 'name' => 'ber_identifier', '5.2.4' => true, ), ), 'mktime' => array( 6 => array( 'name' => 'is_dst', '5.1' => false, '7.0' => true, ), ), ); /** * Returns an array of tokens this test wants to listen for. * * @since 7.0.0 * * @return array */ public function register() { // Handle case-insensitivity of function names. $this->removedFunctionParameters = $this->arrayKeysToLowercase($this->removedFunctionParameters); return array(\T_STRING); } /** * Processes this test, when one of its tokens is encountered. * * @since 7.0.0 * * @param \PHP_CodeSniffer_File $phpcsFile The file being scanned. * @param int $stackPtr The position of the current token in * the stack passed in $tokens. * * @return void */ public function process(File $phpcsFile, $stackPtr) { $tokens = $phpcsFile->getTokens(); $ignore = array( \T_DOUBLE_COLON => true, \T_OBJECT_OPERATOR => true, \T_FUNCTION => true, \T_CONST => true, ); $prevToken = $phpcsFile->findPrevious(\T_WHITESPACE, ($stackPtr - 1), null, true); if (isset($ignore[$tokens[$prevToken]['code']]) === true) { // Not a call to a PHP function. return; } $function = $tokens[$stackPtr]['content']; $functionLc = strtolower($function); if (isset($this->removedFunctionParameters[$functionLc]) === false) { return; } $parameters = $this->getFunctionCallParameters($phpcsFile, $stackPtr); $parameterCount = \count($parameters); if ($parameterCount === 0) { return; } // If the parameter count returned > 0, we know there will be valid open parenthesis. $openParenthesis = $phpcsFile->findNext(Tokens::$emptyTokens, $stackPtr + 1, null, true, null, true); $parameterOffsetFound = $parameterCount - 1; foreach ($this->removedFunctionParameters[$functionLc] as $offset => $parameterDetails) { if ($offset <= $parameterOffsetFound) { if (isset($parameterDetails['callback']) && method_exists($this, $parameterDetails['callback'])) { if ($this->{$parameterDetails['callback']}($phpcsFile, $parameters[($offset + 1)]) === false) { continue; } } $itemInfo = array( 'name' => $function, 'nameLc' => $functionLc, 'offset' => $offset, ); $this->handleFeature($phpcsFile, $openParenthesis, $itemInfo); } } } /** * Get the relevant sub-array for a specific item from a multi-dimensional array. * * @since 7.1.0 * * @param array $itemInfo Base information about the item. * * @return array Version and other information about the item. */ public function getItemArray(array $itemInfo) { return $this->removedFunctionParameters[$itemInfo['nameLc']][$itemInfo['offset']]; } /** * Get an array of the non-PHP-version array keys used in a sub-array. * * @since 7.1.0 * * @return array */ protected function getNonVersionArrayKeys() { return array('name', 'callback'); } /** * Retrieve the relevant detail (version) information for use in an error message. * * @since 7.1.0 * * @param array $itemArray Version and other information about the item. * @param array $itemInfo Base information about the item. * * @return array */ public function getErrorInfo(array $itemArray, array $itemInfo) { $errorInfo = parent::getErrorInfo($itemArray, $itemInfo); $errorInfo['paramName'] = $itemArray['name']; return $errorInfo; } /** * Get the item name to be used for the creation of the error code. * * @since 7.1.0 * * @param array $itemInfo Base information about the item. * @param array $errorInfo Detail information about an item. * * @return string */ protected function getItemName(array $itemInfo, array $errorInfo) { return $itemInfo['name'] . '_' . $errorInfo['paramName']; } /** * Get the error message template for this sniff. * * @since 7.1.0 * * @return string */ protected function getErrorMsgTemplate() { return 'The "%s" parameter for function %s() is '; } /** * Filter the error data before it's passed to PHPCS. * * @since 7.1.0 * * @param array $data The error data array which was created. * @param array $itemInfo Base information about the item this error message applies to. * @param array $errorInfo Detail information about an item this error message applies to. * * @return array */ protected function filterErrorData(array $data, array $itemInfo, array $errorInfo) { array_shift($data); array_unshift($data, $errorInfo['paramName'], $itemInfo['name']); return $data; } /** * Check whether curl_version() was passed the default CURLVERSION_NOW. * * @since 9.3.0 * * @param \PHP_CodeSniffer_File $phpcsFile The file being scanned. * @param array $parameter Parameter info array. * * @return bool True if the value was not CURLVERSION_NOW, false otherwise. */ protected function curlVersionInvalidValue(File $phpcsFile, array $parameter) { $tokens = $phpcsFile->getTokens(); $raw = ''; for ($i = $parameter['start']; $i <= $parameter['end']; $i++) { if (isset(Tokens::$emptyTokens[$tokens[$i]['code']])) { continue; } $raw .= $tokens[$i]['content']; } if ($raw !== 'CURLVERSION_NOW' && $raw !== (string) \CURLVERSION_NOW ) { return true; } return false; } }