Source for file DuplicateClassDefinitionSniff.php
Documentation is available at DuplicateClassDefinitionSniff.php
* Check for duplicate class definitions that can be merged into one.
* @author Greg Sherwood <gsherwood@squiz.net>
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
* @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
namespace PHP_CodeSniffer\Standards\Squiz\Sniffs\CSS;
use PHP_CodeSniffer\Sniffs\Sniff;
use PHP_CodeSniffer\Files\File;
class DuplicateClassDefinitionSniff implements Sniff
* A list of tokenizers this sniff supports.
public $supportedTokenizers = array ('CSS');
* Returns the token types that this sniff is interested in.
public function register ()
return array (T_OPEN_TAG );
* Processes the tokens that this sniff is interested in.
* @param PHP_CodeSniffer_File $phpcsFile The file where the token was found.
* @param int $stackPtr The position in the stack where
public function process (File $phpcsFile, $stackPtr)
$tokens = $phpcsFile->getTokens ();
// Find the content of each class definition name.
// No class definitions in the file.
while ($next !== false ) {
$prev = $phpcsFile->findPrevious ($find, ($next - 1 ));
// Create a sorted name for the class so we can compare classes
// even when the individual names are all over the place.
for ($i = ($prev + 1 ); $i < $next; $i++ ) {
$name .= $tokens[$i]['content'];
if (isset ($classNames[$name]) === true ) {
$first = $classNames[$name];
$error = 'Duplicate class definition found; first defined on line %s';
$data = array ($tokens[$first]['line']);
$phpcsFile->addError ($error, $next, 'Found', $data);
$classNames[$name] = $next;
Documentation generated on Mon, 11 Mar 2019 14:53:21 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.
|