/plugin/icalevents/vendor/squizlabs/php_codesniffer/ |
H A D | README.md | 6 …PHP_CodeSniffer.svg?branch=phpcs-fixer)](https://travis-ci.org/squizlabs/PHP_CodeSniffer) [![Code … 8 …ps://gitter.im/squizlabs/PHP_CodeSniffer](https://badges.gitter.im/Join%20Chat.svg)](https://gitte… 22 curl -OL https://squizlabs.github.io/PHP_CodeSniffer/phpcs.phar 25 curl -OL https://squizlabs.github.io/PHP_CodeSniffer/phpcbf.phar 30 pear install PHP_CodeSniffer 32 If you prefer using [Composer](http://getcomposer.org/) you can easily install PHP_CodeSniffer syst… 48 You will then be able to run PHP_CodeSniffer from the vendor bin directory: 55 git clone https://github.com/squizlabs/PHP_CodeSniffer.git 56 cd PHP_CodeSniffer 63 …\_CodeSniffer is available on the [Github wiki](https://github.com/squizlabs/PHP_CodeSniffer/wiki). [all …]
|
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/ |
H A D | CLI.php | 306 $tabWidth = PHP_CodeSniffer::getConfigData('tab_width'); 313 $encoding = PHP_CodeSniffer::getConfigData('encoding'); 320 $severity = PHP_CodeSniffer::getConfigData('severity'); 359 $quiet = PHP_CodeSniffer::getConfigData('quiet'); 366 $colors = PHP_CodeSniffer::getConfigData('colors'); 375 $standard = PHP_CodeSniffer::getConfigData('standard'); 576 … echo 'PHP_CodeSniffer version '.PHP_CodeSniffer::VERSION.' ('.PHP_CodeSniffer::STABILITY.') '; 884 $file = PHP_CodeSniffer::realpath($arg); 918 $phpcs = new PHP_CodeSniffer($values['verbosity']); 1056 PHP_CodeSniffer $phpcs, [all …]
|
H A D | Fixer.php | 515 $oldContent = PHP_CodeSniffer::prepareForOutput($this->_tokens[$stackPtr]); 516 $newContent = PHP_CodeSniffer::prepareForOutput($content); 519 $append = PHP_CodeSniffer::prepareForOutput($this->_tokens[($stackPtr + 1)]); 624 $oldContent = PHP_CodeSniffer::prepareForOutput($this->_tokens[$stackPtr]); 625 $newContent = PHP_CodeSniffer::prepareForOutput($this->_fixedTokens[$stackPtr]); 628 $append = PHP_CodeSniffer::prepareForOutput($this->_tokens[($stackPtr + 1)]);
|
/plugin/icalevents/vendor/squizlabs/php_codesniffer/scripts/ |
H A D | phpcs.bat | 2 REM PHP_CodeSniffer tokenizes PHP code and detects violations of a 8 REM @package PHP_CodeSniffer 12 REM @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence 13 REM @link http://pear.php.net/package/PHP_CodeSniffer
|
H A D | phpcbf.bat | 7 REM @package PHP_CodeSniffer 10 REM @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence 11 REM @link http://pear.php.net/package/PHP_CodeSniffer
|
H A D | phpcs-svn-pre-commit | 111 if (PHP_CodeSniffer::isInstalledStandard($standard) === false) { 120 $phpcs = new PHP_CodeSniffer(
|
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Tokenizers/ |
H A D | CSS.php | 100 $content = PHP_CodeSniffer::prepareForOutput($token['content']); 123 $cleanContent = PHP_CodeSniffer::prepareForOutput($content); 282 $content = PHP_CodeSniffer::prepareForOutput($token['content']); 335 … $old = PHP_CodeSniffer::prepareForOutput($finalTokens[($stackPtr + 1)]['content']); 336 $new = PHP_CodeSniffer::prepareForOutput($newContent); 353 … $content = PHP_CodeSniffer::prepareForOutput($finalTokens[($stackPtr + 1)]['content']); 410 … $content = PHP_CodeSniffer::prepareForOutput($finalTokens[$i]['content']); 426 … $content = PHP_CodeSniffer::prepareForOutput($finalTokens[$i]['content']); 445 … $content = PHP_CodeSniffer::prepareForOutput($finalTokens[($x + 1)]['content']); 459 … $old = PHP_CodeSniffer::prepareForOutput($finalTokens[($stackPtr + 1)]['content']); [all …]
|
H A D | JS.php | 306 $content = PHP_CodeSniffer::prepareForOutput($char); 307 $bufferContent = PHP_CodeSniffer::prepareForOutput($buffer); 331 $content = PHP_CodeSniffer::prepareForOutput($buffer); 352 $content = PHP_CodeSniffer::prepareForOutput($buffer); 541 $content = PHP_CodeSniffer::prepareForOutput($buffer); 582 $content = PHP_CodeSniffer::prepareForOutput($charBuffer); 609 $content = PHP_CodeSniffer::prepareForOutput($char); 630 $content = PHP_CodeSniffer::prepareForOutput($lastContent); 646 $content = PHP_CodeSniffer::prepareForOutput($lastChar); 684 $content = PHP_CodeSniffer::prepareForOutput($buffer); [all …]
|
H A D | Comment.php | 71 $content = PHP_CodeSniffer::prepareForOutput($openTag); 114 $content = PHP_CodeSniffer::prepareForOutput($space['content']); 149 $content = PHP_CodeSniffer::prepareForOutput($lineToken['content']); 165 $content = PHP_CodeSniffer::prepareForOutput($closeTag['content']);
|
/plugin/findologicxmlexport/vendor/phpdocumentor/reflection-docblock/ |
H A D | easy-coding-standard.neon | 24 PHP_CodeSniffer\Standards\Generic\Sniffs\CodeAnalysis\EmptyStatementSniff: 27 PHP_CodeSniffer\Standards\Squiz\Sniffs\Classes\ValidClassNameSniff: 30 PHP_CodeSniffer\Standards\Generic\Sniffs\NamingConventions\CamelCapsFunctionNameSniff:
|
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/NamingConventions/ |
H A D | ValidVariableNameSniff.php | 99 if (PHP_CodeSniffer::isCamelCaps($objVarName, false, true, false) === false) { 127 if (PHP_CodeSniffer::isCamelCaps($varName, false, true, false) === false) { 180 if (PHP_CodeSniffer::isCamelCaps($varName, false, $public, false) === false) { 223 if (PHP_CodeSniffer::isCamelCaps($varName, false, true, false) === false) {
|
H A D | ValidFunctionNameSniff.php | 64 if (PHP_CodeSniffer::isCamelCaps($functionName, false, true, false) === false) {
|
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Zend/Sniffs/NamingConventions/ |
H A D | ValidVariableNameSniff.php | 101 if (PHP_CodeSniffer::isCamelCaps($objVarName, false, true, false) === false) { 133 if (PHP_CodeSniffer::isCamelCaps($varName, false, true, false) === false) { 182 if (PHP_CodeSniffer::isCamelCaps($varName, false, $public, false) === false) { 230 if (PHP_CodeSniffer::isCamelCaps($varName, false, true, false) === false) {
|
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Reports/ |
H A D | Notifysend.php | 83 $path = PHP_CodeSniffer::getConfigData('notifysend_path'); 88 $timeout = PHP_CodeSniffer::getConfigData('notifysend_timeout'); 93 $showOk = PHP_CodeSniffer::getConfigData('notifysend_showok');
|
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Debug/ |
H A D | JSHintSniff.php | 67 $rhinoPath = PHP_CodeSniffer::getConfigData('rhino_path'); 68 $jshintPath = PHP_CodeSniffer::getConfigData('jshint_path');
|
H A D | CSSLintSniff.php | 64 $csslintPath = PHP_CodeSniffer::getConfigData('csslint_path');
|
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Debug/ |
H A D | JSLintSniff.php | 65 $rhinoPath = PHP_CodeSniffer::getConfigData('rhino_path'); 66 $jslintPath = PHP_CodeSniffer::getConfigData('jslint_path');
|
H A D | JavaScriptLintSniff.php | 64 $jslPath = PHP_CodeSniffer::getConfigData('jsl_path');
|
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/NamingConventions/ |
H A D | CamelCapsFunctionNameSniff.php | 155 if (PHP_CodeSniffer::isCamelCaps($methodName, false, true, $this->strict) === false) { 210 if (PHP_CodeSniffer::isCamelCaps($functionName, false, true, $this->strict) === false) {
|
/plugin/findologicxmlexport/vendor/jms/metadata/ |
H A D | CONTRIBUTING.md | 10 This project uses [PHP_CodeSniffer](https://github.com/squizlabs/PHP_CodeSniffer) to enforce coding…
|
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/NamingConventions/ |
H A D | ValidFunctionNameSniff.php | 164 if (PHP_CodeSniffer::isCamelCaps($testMethodName, false, $isPublic, false) === false) { 260 if (PHP_CodeSniffer::isCamelCaps($camelCapsPart, false, true, false) === false) {
|
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/PHP/ |
H A D | SyntaxSniff.php | 65 $this->_phpPath = PHP_CodeSniffer::getConfigData('php_path');
|
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Zend/Sniffs/Debug/ |
H A D | CodeAnalyzerSniff.php | 58 $analyzerPath = PHP_CodeSniffer::getConfigData('zend_ca_path');
|
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/DocGenerators/ |
H A D | Markdown.php | 88 …echo ' by [PHP_CodeSniffer '.PHP_CodeSniffer::VERSION.'](https://github.com/squizlabs/PHP_CodeSnif…
|
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR1/Sniffs/Methods/ |
H A D | CamelCapsMethodNameSniff.php | 65 … if ($testName !== '' && PHP_CodeSniffer::isCamelCaps($testName, false, true, false) === false) {
|