Tagged Questions
This tag is for questions having to do with the CodeSniffer tool from Squizlabs, which is used for static analysis of PHP code.
12
votes
8answers
5k views
How useful is PHP CodeSniffer? Code Standards Enforcement in General?
I'm dabbling with the idea of setting up PHP CodeSniffer on our continuous integration server in an effort to improve the quality of our code-base. After reading the documentation I'm very excited ...
5
votes
3answers
194 views
How to create PHP-UnitTest case for PHP_Codesniffer standards?`
I have created my own codesniffer rules standards.They are working fine. Now I want to test codesniffer rules using PHP UnitTest. PhpCodesniffer has already have their framework for PHPUnit test case. ...
5
votes
3answers
1k views
Git pre-receive hook to launch PHP CodeSniffer
I'd like to check code committed to my remote git repository with PHP CodeSniffer and reject it if there are any problems code standards. Does anyone have an example how to use it on git remote ...
3
votes
1answer
350 views
PHP_CodeSniffer missing Zend standards?
I'm trying to use PHP_CodeSniffer to sniff the problems in a php file according to the zend coding standards.
The problem is some of the basic rules are not detected, for example
String Literals
$a ...
1
vote
1answer
590 views
Install PHP CodeSniffer with Netbeans 7.0.1 on Windows 7 64 bits
I'm trying to install PHP_CodeSniffer with Netbeans in my computer with Windows 7 64 bits.
So far...
1) I've downloaded from https://github.com/beberlei/netbeans-php-enhancements/downloads the file ...
1
vote
2answers
98 views
How to catch PHP backtick operator usage via PHP_CodeSniffer?
I've studied some "sniffs" from the "Generic" and "Squiz" coding standards that come with CodeSniffer version 1.3, and learned enough to write a few "custom" sniffs to catch some coding anti-patterns ...
1
vote
1answer
754 views
How to use PHP_CodeSniffer with XAMPP?
I am running XAMPP with windows XP. I just download PHP_CodeSniffer and cannot figure out how to run it.
Thank you
0
votes
1answer
16 views
codesniffer using pear standard ignore line indent
using codesniffer with pear standard.
I got over 20tsd errors cause of line indents.
I use tab-stops for indenting.
I try to disable that check but I failed.
I removed the last rule from the generic ...
0
votes
0answers
47 views
Permission Denied error during hudson build at codesniffer section
I have hudson set up on my ubuntu dev machine and configured to do do phpdoc, phpcpd, pdepend, and phpcs. All the other parts work fine except for phpcs, which fails with the following error:
PHP ...
0
votes
2answers
60 views
extending phpcodesniffer to filter report based on error codes
I am trying to extend PHPCodeSniffer.What I am trying to achive is to filter the report using error codes.
To explain this lets say I have an error message like "error code : 630 , function is not ...
0
votes
1answer
410 views
Visualize PHP code with Checkstyle report (from CodeSniffer)
PHP CodeSniffer is a very good tool to help us check our PHP source code. But the report from CodeSniffer is not easy to read.
I found that CodeSniffer can output 'Checkstyle' xml report. Is that any ...
0
votes
1answer
348 views
php codesniffer + xampp: Missing PEAR/Exception.php
I followed exactly what's in: How to use PHP_CodeSniffer with XAMPP? (no more no less)
But i encounter this error:
Warning: require_once(PEAR/Exception.php): failed to open stream: No such file or ...
0
votes
1answer
267 views
Pear CodeSniffer Cyclomatic Complexity
The Pear CodeSniffer seems to come with a Cyclomatic Complexity Sniff (CyclomaticComplexitySniff.php). Does anyone know how to use it? I'd like to calculate the complexity of the code I'm analyzing. ...
0
votes
1answer
163 views
Why am I getting an exception from PHP CodeSniffer?
Well, I'm getting a pretty bizarre error from PHPCS:
<?xml version="1.0" encoding="UTF-8"?>
<checkstyle version="1.2.2">
<file ...
0
votes
1answer
548 views
PHP-CodeBrowser not following path in checkstyle.xml correctly
I've set up phpUnderControl and it's all working very well, except that for a few projects that I have aren't getting any output in the PHP-CodeBrowser tab.
If I run the command manually I get:
...
-1
votes
0answers
12 views
codesniffer file comment @package name error
this is my abstracted file comment:
<?php
/**
* foo foo foo
*
* @package myFooPackage
* @author me
..
Codesniffer gives me an error that the package name "myFooPackage" is invalid, should ...