コード例 #1
0
 /**
  * Processes single-line declarations.
  *
  * Just uses the Generic BSD-Allman brace sniff.
  *
  * @param PHP_CodeSniffer_File $phpcsFile The file being scanned.
  * @param int                  $stackPtr  The position of the current token
  *                                        in the stack passed in $tokens.
  * @param array                $tokens    The stack of tokens that make up
  *                                        the file.
  *
  * @return void
  */
 public function processSingleLineDeclaration(PHP_CodeSniffer_File $phpcsFile, $stackPtr, $tokens)
 {
     if (class_exists('Generic_Sniffs_Functions_OpeningFunctionBraceBsdAllmanSniff', true) === false) {
         throw new PHP_CodeSniffer_Exception('Class Generic_Sniffs_Functions_OpeningFunctionBraceBsdAllmanSniff not found');
     }
     $sniff = new Generic_Sniffs_Functions_OpeningFunctionBraceBsdAllmanSniff();
     $sniff->process($phpcsFile, $stackPtr);
 }
 /**
  * Processes single-line declarations.
  *
  * Just uses the Generic BSD-Allman brace sniff.
  *
  * @param PHP_CodeSniffer_File $phpcsFile The file being scanned.
  * @param int                  $stackPtr  The position of the current token
  *                                        in the stack passed in $tokens.
  * @param array                $tokens    The stack of tokens that make up
  *                                        the file.
  *
  * @return void
  */
 public function processSingleLineDeclaration(PHP_CodeSniffer_File $phpcsFile, $stackPtr, $tokens)
 {
     if ($tokens[$stackPtr]['code'] === T_CLOSURE) {
         if (class_exists('Generic_Sniffs_Functions_OpeningFunctionBraceKernighanRitchieSniff', true) === false) {
             throw new PHP_CodeSniffer_Exception('Class Generic_Sniffs_Functions_OpeningFunctionBraceKernighanRitchieSniff not found');
         }
         $sniff = new Generic_Sniffs_Functions_OpeningFunctionBraceKernighanRitchieSniff();
     } else {
         if (class_exists('Generic_Sniffs_Functions_OpeningFunctionBraceBsdAllmanSniff', true) === false) {
             throw new PHP_CodeSniffer_Exception('Class Generic_Sniffs_Functions_OpeningFunctionBraceBsdAllmanSniff not found');
         }
         $sniff = new Generic_Sniffs_Functions_OpeningFunctionBraceBsdAllmanSniff();
     }
     $sniff->checkClosures = true;
     $sniff->process($phpcsFile, $stackPtr);
 }
コード例 #3
0
 public function process(PHP_CodeSniffer_File $phpcsFile, $stackPtr)
 {
     // parent class is not a valid code so that cause Notice error
     // this method is for passing that
     @parent::process($phpcsFile, $stackPtr);
 }