Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
522c15b5d9
80
PMAStandard/Sniffs/Files/SpacesAroundConcatSniff.php
Normal file
80
PMAStandard/Sniffs/Files/SpacesAroundConcatSniff.php
Normal file
@ -0,0 +1,80 @@
|
||||
<?php
|
||||
/* vim: set expandtab sw=4 ts=4 sts=4: */
|
||||
/**
|
||||
* Class for a sniff to oblige whitespaces before and after a concatenation operator
|
||||
*
|
||||
* This Sniff check if a whitespace is missing before or after any concatenation
|
||||
* operator.
|
||||
* The concatenation operator is identified by the PHP token T_STRING_CONCAT
|
||||
* The whitespace is identified by the PHP token T_WHITESPACE
|
||||
*
|
||||
* PHP version 5
|
||||
*
|
||||
* @category PHP
|
||||
* @package PHP_CodeSniffer
|
||||
* @since September, the 12th 2013
|
||||
*/
|
||||
|
||||
/// {{{ PMAStandard_Sniffs_Files_SpacesAroundConcatSniff
|
||||
/**
|
||||
* Sniff to oblige whitespaces before and after a concatenation operator
|
||||
*
|
||||
* @category PHP
|
||||
* @package PHP_CodeSniffer
|
||||
* @name SpacesAroundConcatSniff
|
||||
* @version Release: 1.0
|
||||
*/
|
||||
class PMAStandard_Sniffs_Files_SpacesAroundConcatSniff implements PHP_CodeSniffer_Sniff
|
||||
{
|
||||
|
||||
// {{{ register()
|
||||
|
||||
/**
|
||||
* Returns the token types that this sniff is interested in.
|
||||
*
|
||||
* @name register
|
||||
* @access public
|
||||
* @see PHP_CodeSniffer_Sniff::register()
|
||||
*
|
||||
* @return array(int)
|
||||
*/
|
||||
public function register()
|
||||
{
|
||||
return array(T_STRING_CONCAT);
|
||||
|
||||
}//end register()
|
||||
|
||||
// }}}
|
||||
// {{{ process()
|
||||
|
||||
/**
|
||||
* Processes the tokens that this sniff is interested in.
|
||||
*
|
||||
* @name process
|
||||
* @access public
|
||||
* @see PHP_CodeSniffer_Sniff::process()
|
||||
* @param PHP_CodeSniffer_File $phpcsFile The file where the token was found.
|
||||
* @param int $stackPtr The position in the stack where the token was found.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function process(PHP_CodeSniffer_File $phpcsFile, $stackPtr)
|
||||
{
|
||||
$tokens = $phpcsFile->getTokens();
|
||||
if ($tokens[$stackPtr-1]['type'] !== 'T_WHITESPACE') {
|
||||
$warning = 'Whitespace is expected before any concat operator "."';
|
||||
$phpcsFile->addWarning($warning, $stackPtr, 'Found');
|
||||
}
|
||||
if ($tokens[$stackPtr+1]['type'] !== 'T_WHITESPACE') {
|
||||
$warning = 'Whitespace is expected after any concat operator "."';
|
||||
$phpcsFile->addWarning($warning, $stackPtr, 'Found');
|
||||
}
|
||||
}//end process()
|
||||
|
||||
// }}}
|
||||
|
||||
}//end class
|
||||
|
||||
// }}}
|
||||
|
||||
?>
|
||||
@ -856,7 +856,8 @@ class PMA_ServerPrivileges_Test extends PHPUnit_Framework_TestCase
|
||||
|
||||
//validate 3: PMA_getHtmlForGlobalOrDbSpecificPrivs
|
||||
$this->assertContains(
|
||||
'<fieldset id="fieldset_user_global_rights"><legend>',
|
||||
'<fieldset id="fieldset_user_global_rights"><legend '
|
||||
. 'data-submenu-label="' . __('Global') . '">',
|
||||
$html
|
||||
);
|
||||
$this->assertContains(
|
||||
|
||||
Loading…
Reference in New Issue
Block a user