I am using PHAN in my projects and wonder if there is some kind of codesniffer to validate the code is PHAN compliant.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
My guess is that you could use Codesniffer (http://pear.php.net/manual/en/package.php.php-codesniffer.php), but you would have to create your own custom sniffs. It doesn't look too hard, and all the documentation is there. What you can do is check that each variable name is made up of the legal prefixes. What you might be able to do is check that private class variable begin with _. What you won't be able to do is check that the correct type prefix is used. This is because PHP variables are dynamically typed and can change over the life of the variable. It would be impossible for a static code analyser to figure that our. |
|||
|
|
$asArrayWithStringsVar, and not$arrayWithStrings. That is something that should be checkable, I would guess. Check the link I added earlier. – Paul Peelen Sep 17 '12 at 10:46$asArray...is an integer? – Karoly Horvath Sep 17 '12 at 10:59