Home
last modified time | relevance | path

Searched refs:PHP_CodeSniffer (Results 1 – 25 of 50) sorted by relevance

12

/plugin/icalevents/vendor/squizlabs/php_codesniffer/
H A DREADME.md6PHP_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 DCLI.php306 $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 DFixer.php515 $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 Dphpcs.bat2 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 Dphpcbf.bat7 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 Dphpcs-svn-pre-commit111 if (PHP_CodeSniffer::isInstalledStandard($standard) === false) {
120 $phpcs = new PHP_CodeSniffer(
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Tokenizers/
H A DCSS.php100 $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 DJS.php306 $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 DComment.php71 $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 Deasy-coding-standard.neon24 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 DValidVariableNameSniff.php99 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 DValidFunctionNameSniff.php64 if (PHP_CodeSniffer::isCamelCaps($functionName, false, true, false) === false) {
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Zend/Sniffs/NamingConventions/
H A DValidVariableNameSniff.php101 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 DNotifysend.php83 $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 DJSHintSniff.php67 $rhinoPath = PHP_CodeSniffer::getConfigData('rhino_path');
68 $jshintPath = PHP_CodeSniffer::getConfigData('jshint_path');
H A DCSSLintSniff.php64 $csslintPath = PHP_CodeSniffer::getConfigData('csslint_path');
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Debug/
H A DJSLintSniff.php65 $rhinoPath = PHP_CodeSniffer::getConfigData('rhino_path');
66 $jslintPath = PHP_CodeSniffer::getConfigData('jslint_path');
H A DJavaScriptLintSniff.php64 $jslPath = PHP_CodeSniffer::getConfigData('jsl_path');
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/NamingConventions/
H A DCamelCapsFunctionNameSniff.php155 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 DCONTRIBUTING.md10 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 DValidFunctionNameSniff.php164 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 DSyntaxSniff.php65 $this->_phpPath = PHP_CodeSniffer::getConfigData('php_path');
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Zend/Sniffs/Debug/
H A DCodeAnalyzerSniff.php58 $analyzerPath = PHP_CodeSniffer::getConfigData('zend_ca_path');
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/DocGenerators/
H A DMarkdown.php88 …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 DCamelCapsMethodNameSniff.php65 … if ($testName !== '' && PHP_CodeSniffer::isCamelCaps($testName, false, true, false) === false) {

12