Are there tools for PHP to check the quality of code? I understand in Java they have tools like Parasoft which checks the quality and security of code and informs you of any changes to be made.
|
|
PHP_CodeSniffer tokenises PHP, JavaScript and CSS files and detects violations of a defined set of coding standards. phpmd scans PHP source code and looks for potential problems such as possible bugs, suboptimal code or overcomplicated expressions. phpcpd is a Copy/Paste Detector (CPD) for PHP code. PHP_Depend is a PHP software metrics tool. PHPUnit is the de-facto standard unit test framework for PHP. For security and audit |
|||||
|
|
I've recently tried PHP_CodeSniffer which checks the syntax of your scripts, it isn't a real quality check on your code but with it as a pre-commit hook in svn you could easily enforce coding standards in your application. But... of course it's perfectly possible to write crap code and adhere to coding standards at the same time. That's why Code Reviews by colleague's is an important aspect in QA you shouldn't forget. |
|||
|
|
|
PHPStorm can inspect your code and will generate a report about all kinds of problems. It's pretty thorough. It also highlights problems while you're writing the code, like missing brackets or uninitialized variables. |
||||
|
|