/php/pear/PHP/CodeSniffer/Standards/Zend/Sniffs/Files/ClosingTagSniff.php

https://gitlab.com/trang1104/portable_project · PHP · 70 lines · 18 code · 11 blank · 41 comment · 1 complexity · 92571914468a3bcd0d2de3cb80c59708 MD5 · raw file

  1. <?php
  2. /**
  3. * Zend_Sniffs_Files_ClosingTagsSniff.
  4. *
  5. * PHP version 5
  6. *
  7. * @category PHP
  8. * @package PHP_CodeSniffer
  9. * @author Greg Sherwood <gsherwood@squiz.net>
  10. * @author Marc McIntyre <mmcintyre@squiz.net>
  11. * @copyright 2006-2011 Squiz Pty Ltd (ABN 77 084 670 600)
  12. * @license http://matrix.squiz.net/developer/tools/php_cs/licence BSD Licence
  13. * @link http://pear.php.net/package/PHP_CodeSniffer
  14. */
  15. /**
  16. * Zend_Sniffs_Files_LineEndingsSniff.
  17. *
  18. * Checks that the file does not end with a closing tag.
  19. *
  20. * @category PHP
  21. * @package PHP_CodeSniffer
  22. * @author Greg Sherwood <gsherwood@squiz.net>
  23. * @author Marc McIntyre <mmcintyre@squiz.net>
  24. * @copyright 2006-2011 Squiz Pty Ltd (ABN 77 084 670 600)
  25. * @license http://matrix.squiz.net/developer/tools/php_cs/licence BSD Licence
  26. * @version Release: 1.3.3
  27. * @link http://pear.php.net/package/PHP_CodeSniffer
  28. */
  29. class Zend_Sniffs_Files_ClosingTagSniff implements PHP_CodeSniffer_Sniff
  30. {
  31. /**
  32. * Returns an array of tokens this test wants to listen for.
  33. *
  34. * @return array
  35. */
  36. public function register()
  37. {
  38. return array(T_CLOSE_TAG);
  39. }//end register()
  40. /**
  41. * Processes this sniff, when one of its tokens is encountered.
  42. *
  43. * @param PHP_CodeSniffer_File $phpcsFile The file being scanned.
  44. * @param int $stackPtr The position of the current token in
  45. * the stack passed in $tokens.
  46. *
  47. * @return void
  48. */
  49. public function process(PHP_CodeSniffer_File $phpcsFile, $stackPtr)
  50. {
  51. $tokens = $phpcsFile->getTokens();
  52. $next = $phpcsFile->findNext(T_WHITESPACE, ($stackPtr + 1), null, true);
  53. if ($next === false) {
  54. $error = 'A closing tag is not permitted at the end of a PHP file';
  55. $phpcsFile->addError($error, $stackPtr, 'NotAllowed');
  56. }
  57. }//end process()
  58. }//end class
  59. ?>