Subversion-Projekte lars-tiefland.php_share

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
<?php
2
/**
3
 * Squiz_Sniffs_Strings_ConcatenationSpacingSniff.
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 Squiz Pty Ltd (ABN 77 084 670 600)
12
 * @license   http://matrix.squiz.net/developer/tools/php_cs/licence BSD Licence
13
 * @version   CVS: $Id: ConcatenationSpacingSniff.php 240175 2007-07-23 01:47:54Z squiz $
14
 * @link      http://pear.php.net/package/PHP_CodeSniffer
15
 */
16
 
17
/**
18
 * Squiz_Sniffs_Strings_ConcatenationSpacingSniff.
19
 *
20
 * Makes sure there are no spaces between the concatenation operator (.) and
21
 * the strings being concatenated.
22
 *
23
 * @category  PHP
24
 * @package   PHP_CodeSniffer
25
 * @author    Greg Sherwood <gsherwood@squiz.net>
26
 * @author    Marc McIntyre <mmcintyre@squiz.net>
27
 * @copyright 2006 Squiz Pty Ltd (ABN 77 084 670 600)
28
 * @license   http://matrix.squiz.net/developer/tools/php_cs/licence BSD Licence
29
 * @version   Release: 1.2.1
30
 * @link      http://pear.php.net/package/PHP_CodeSniffer
31
 */
32
class Squiz_Sniffs_Strings_ConcatenationSpacingSniff implements PHP_CodeSniffer_Sniff
33
{
34
 
35
 
36
    /**
37
     * Returns an array of tokens this test wants to listen for.
38
     *
39
     * @return array
40
     */
41
    public function register()
42
    {
43
        return array(T_STRING_CONCAT);
44
 
45
    }//end register()
46
 
47
 
48
    /**
49
     * Processes this test, when one of its tokens is encountered.
50
     *
51
     * @param PHP_CodeSniffer_File $phpcsFile The file being scanned.
52
     * @param int                  $stackPtr  The position of the current token in the
53
     *                                        stack passed in $tokens.
54
     *
55
     * @return void
56
     */
57
    public function process(PHP_CodeSniffer_File $phpcsFile, $stackPtr)
58
    {
59
        $tokens = $phpcsFile->getTokens();
60
 
61
        $found    = '';
62
        $expected = '';
63
        $error    = false;
64
 
65
        if ($tokens[($stackPtr - 1)]['code'] === T_WHITESPACE) {
66
            $expected .= '...'.substr($tokens[($stackPtr - 2)]['content'], -5).$tokens[$stackPtr]['content'];
67
            $found    .= '...'.substr($tokens[($stackPtr - 2)]['content'], -5).$tokens[($stackPtr - 1)]['content'].$tokens[$stackPtr]['content'];
68
            $error     = true;
69
        } else {
70
            $found    .= '...'.substr($tokens[($stackPtr - 1)]['content'], -5).$tokens[$stackPtr]['content'];
71
            $expected .= '...'.substr($tokens[($stackPtr - 1)]['content'], -5).$tokens[$stackPtr]['content'];
72
        }
73
 
74
        if ($tokens[($stackPtr + 1)]['code'] === T_WHITESPACE) {
75
            $expected .= substr($tokens[($stackPtr + 2)]['content'], 0, 5).'...';
76
            $found    .= $tokens[($stackPtr + 1)]['content'].substr($tokens[($stackPtr + 2)]['content'], 0, 5).'...';
77
            $error     = true;
78
        } else {
79
            $found    .= $tokens[($stackPtr + 1)]['content'];
80
            $expected .= $tokens[($stackPtr + 1)]['content'];
81
        }
82
 
83
        if ($error === true) {
84
            $found    = str_replace("\r\n", '\n', $found);
85
            $found    = str_replace("\n", '\n', $found);
86
            $found    = str_replace("\r", '\n', $found);
87
            $expected = str_replace("\r\n", '\n', $expected);
88
            $expected = str_replace("\n", '\n', $expected);
89
            $expected = str_replace("\r", '\n', $expected);
90
 
91
            $message = "Concat operator must not be surrounded by spaces. Found \"$found\"; expected \"$expected\"";
92
            $phpcsFile->addError($message, $stackPtr);
93
        }
94
 
95
    }//end process()
96
 
97
 
98
}//end class
99
 
100
?>