!C99Shell v. 2.1 [PHP 8 Update] [02.02.2022]!

Software: Apache/2.4.53 (Unix) OpenSSL/1.1.1o PHP/7.4.29 mod_perl/2.0.12 Perl/v5.34.1. PHP/7.4.29 

uname -a: Linux vps-2738122-x 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64 

uid=1(daemon) gid=1(daemon) grupos=1(daemon) 

Safe-mode: OFF (not secure)

/opt/apex_led/php/convenciones/Toba/Sniffs/CodeAnalysis/   drwxrwxr-x
Free 13.84 GB of 61.93 GB (22.34%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     UselessOverridingMethodSniff.php (5.68 KB)      -rwxrwxr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
 * This file is part of the CodeAnalysis addon for PHP_CodeSniffer.
 *
 * PHP version 5
 *
 * @category  PHP
 * @package   PHP_CodeSniffer
 * @author    Greg Sherwood <gsherwood@squiz.net>
 * @author    Manuel Pichler <mapi@manuel-pichler.de>
 * @copyright 2007-2008 Manuel Pichler. All rights reserved.
 * @license   http://www.opensource.org/licenses/bsd-license.php BSD License
 * @version   CVS: $Id: UselessOverridingMethodSniff.php,v 1.1 2008/02/06 02:38:36 squiz Exp $
 * @link      http://pear.php.net/package/PHP_CodeSniffer
 */

/**
 * Detects unnecessary final modifiers inside of final classes.
 *
 * This rule is based on the PMD rule catalog. The Unnecessary Final Modifier
 * sniff detects the use of the final modifier inside of a final class which
 * is unnecessary.
 *
 * <code>
 * final class Foo
 * {
 *     public final function bar()
 *     {
 *     }
 * }
 * </code>
 *
 * @category  PHP
 * @package   PHP_CodeSniffer
 * @author    Manuel Pichler <mapi@manuel-pichler.de>
 * @copyright 2007-2008 Manuel Pichler. All rights reserved.
 * @license   http://www.opensource.org/licenses/bsd-license.php BSD License
 * @version   Release: 1.1.0
 * @link      http://pear.php.net/package/PHP_CodeSniffer
 */
class Toba_Sniffs_CodeAnalysis_UselessOverridingMethodSniff implements PHP_CodeSniffer_Sniff
{


    
/**
     * Registers the tokens that this sniff wants to listen for.
     *
     * @return array(integer)
     */
    
public function register()
    {
        return array(
T_FUNCTION);

    }
//end register()


    /**
     * Processes this test, when one of its tokens is encountered.
     *
     * @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(PHP_CodeSniffer_File $phpcsFile$stackPtr)
    {
        
$tokens $phpcsFile->getTokens();
        
$token  $tokens[$stackPtr];

        
// Skip function without body.
        
if (isset($token['scope_opener']) === false) {
            return;
        }

        
// Get function name.
        
$methodName $phpcsFile->getDeclarationName($stackPtr);

        
// Get all parameters from method signature.
        
$signature = array();
        foreach (
$phpcsFile->getMethodParameters($stackPtr) as $param) {
            
$signature[] = $param['name'];
        }

        
$next = ++$token['scope_opener'];
        
$end  = --$token['scope_closer'];

        for (; 
$next <= $end; ++$next) {
            
$code $tokens[$next]['code'];

            if (
in_array($codePHP_CodeSniffer_Tokens::$emptyTokens) === true) {
                continue;
            } else if (
$code === T_RETURN) {
                continue;
            }

            break;
        }

        
// Any token except 'parent' indicates correct code.
        
if ($tokens[$next]['code'] !== T_PARENT) {
            return;
        }

        
// Find next non empty token index, should be double colon.
        
$next $phpcsFile->findNext(PHP_CodeSniffer_Tokens::$emptyTokens, ($next 1), nulltrue);

        
// Skip for invalid code.
        
if ($next === false || $tokens[$next]['code'] !== T_DOUBLE_COLON) {
            return;
        }

        
// Find next non empty token index, should be the function name.
        
$next $phpcsFile->findNext(PHP_CodeSniffer_Tokens::$emptyTokens, ($next 1), nulltrue);

        
// Skip for invalid code or other method.
        
if ($next === false || $tokens[$next]['content'] !== $methodName) {
            return;
        }

        
// Find next non empty token index, should be the open parenthesis.
        
$next $phpcsFile->findNext(PHP_CodeSniffer_Tokens::$emptyTokens, ($next 1), nulltrue);

        
// Skip for invalid code.
        
if ($next === false || $tokens[$next]['code'] !== T_OPEN_PARENTHESIS) {
            return;
        }

        
$validParameterTypes = array(
                                
T_VARIABLE,
                                
T_LNUMBER,
                                
T_CONSTANT_ENCAPSED_STRING,
                               );

        
$parameters       = array('');
        
$parenthesisCount 1;
        
$count            count($tokens);
        for (++
$next$next $count; ++$next) {
            
$code $tokens[$next]['code'];

            if (
$code === T_OPEN_PARENTHESIS) {
                ++
$parenthesisCount;
            } else if (
$code === T_CLOSE_PARENTHESIS) {
                --
$parenthesisCount;
            } else if (
$parenthesisCount === && $code === T_COMMA) {
                
$parameters[] = '';
            } else if (
in_array($codePHP_CodeSniffer_Tokens::$emptyTokens) === false) {
                
$parameters[(count($parameters) - 1)] .= $tokens[$next]['content'];
            }

            if (
$parenthesisCount === 0) {
                break;
            }
        }
//end for

        
$next $phpcsFile->findNext(PHP_CodeSniffer_Tokens::$emptyTokens, ($next 1), nulltrue);
        if (
$next === false || $tokens[$next]['code'] !== T_SEMICOLON) {
            return;
        }

        
// Check rest of the scope.
        
for (++$next$next <= $end; ++$next) {
            
$code $tokens[$next]['code'];
            
// Skip for any other content.
            
if (in_array($codePHP_CodeSniffer_Tokens::$emptyTokens) === false) {
                return;
            }
        }

        
$parameters array_map('trim'$parameters);
        
$parameters array_filter($parameters);

        if (
count($parameters) === count($signature) && $parameters === $signature) {
            
$phpcsFile->addWarning('Useless method overriding detected'$stackPtr);
        }

    }
//end process()


}//end class

?>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.1 [PHP 8 Update] [02.02.2022] maintained byC99Shell Github | Generation time: 0.9536 ]--