DeepSource
Dashboard Resources Pricing Discover Directory Log in

Run your first analysis.

Find thousands of code security and quality issues in your codebase, before they end up in production.

Start now
All analyzers PHP
PHP

PHP

By DeepSource

Use Analyzer
Docs
Discuss
Missing function/class method doc comment PHP-D1002
Documentation

Documentation comments are helpful in understanding what that part of the code is responsible for. It is always a good idea to add documentation to your code to improve the code readability and maintainability. In addition to that, it becomes helpful when you revisit the code after a long time. Here, the function/class method is missing the doc comment and it is recommended to add it for the reasons discussed above.

Use of FIXME/XXX/TODO encountered PHP-W1073
Documentation

You have marked this block as FIXME/TODO/XXX. Please make sure this is addressed, or remove this comment as this could be misleading.

Missing class doc comment PHP-D1001
Documentation

Documentation comments are helpful in understanding what that part of the code is responsible for. It is always a good idea to add documentation to your code to improve the code readability and maintainability. In addition to that, it becomes helpful when you revisit the code after a long time. Here, the class is missing the doc comment and it is recommended to add it for the reasons discussed above.