
Php Code Review
- 3 installs
- 32 repo stars
- Updated July 10, 2026
- jetbrains/phpstorm-claude-marketplace
php-code-review skill documents Review PHP code using PhpStorm inspections.
About
php-code-review skill documents Review PHP code using PhpStorm inspections. Use when editing PHP files, reviewing code quality, fixing PHP issues, or when asked about PHP best practices.. name: php-code-review description: Review PHP code using PhpStorm inspections. Use when editing PHP files, reviewing code quality, fixing PHP issues, or when asked about PHP best practices.
- Review PHP code using PhpStorm inspections.
- Platform-specific setup patterns for php-code-review.
- Evidence-backed steps from upstream SKILL.md.
- When-to-use criteria for php-code-review versus alternatives.
Php Code Review by the numbers
- 3 all-time installs (skills.sh)
- Ranked #596 of 782 Skill Development skills by installs in the Skillselion catalog
- Data as of Jul 26, 2026 (Skillselion catalog sync)
php-code-review capabilities & compatibility
- Capabilities
- php code review quick start · php code review when to use guidance · php code review integration patterns
- Use cases
- documentation
- IDEs
- intellij · jetbrains
What php-code-review says it does
Use PhpStorm's inspection engine to ensure PHP code quality. This skill provides access to the same inspections shown in the IDE editor.
After editing PHP files (`.php`, `.phtml`)
npx skills add https://github.com/jetbrains/phpstorm-claude-marketplace --skill php-code-reviewAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 3 |
|---|---|
| repo stars | ★ 32 |
| Last updated | July 10, 2026 |
| Repository | jetbrains/phpstorm-claude-marketplace ↗ |
How do I use php-code-review correctly?
Review PHP code using PhpStorm inspections. Use when editing PHP files, reviewing code quality, fixing PHP issues, or when asked about PHP best practices.
Who is it for?
Teams implementing php-code-review workflows from the catalog.
Skip if: Skip when requirements clearly match a different specialized stack.
When should I use this skill?
User asks about php-code-review, review php code using phpstorm inspections. use when editing php files, reviewing code qua.
What you get
Working php-code-review setup with validated configuration and next steps.
Files
PHP Code Review Skill
Use PhpStorm's inspection engine to ensure PHP code quality. This skill provides access to the same inspections shown in the IDE editor.
When to Use
- After editing PHP files (
.php,.phtml) - When user asks to review PHP code quality
- When fixing PHP-related issues
- When asked about PHP best practices for this codebase
Workflow
1. Run Inspections
Call get_inspections to analyze a PHP file:
get_inspections(
filePath: "path/to/file.php",
minSeverity: "WEAK_WARNING" # or ERROR, WARNING, INFORMATION
)Returns problems with:
- severity: ERROR > WARNING > WEAK_WARNING > INFORMATION
- line/column: Exact location (1-based)
- description: What's wrong
- quickFixes: Available automated fixes (name + description)
2. Evaluate Results
- ERROR: Must fix - code may not work correctly
- WARNING: Should fix - potential bugs or bad practices
- WEAK_WARNING: Consider fixing - style or minor issues
- INFORMATION: Optional - suggestions for improvement
3. Apply Fixes
For issues with quick fixes, use apply_quick_fix:
apply_quick_fix(
filePath: "path/to/file.php",
line: 42,
column: 10,
quickFixName: "Safe delete '$unusedVar'"
)Note: The quickFixName must match exactly what was returned by get_inspections. The tool re-runs highlighting at the specified location to find and apply the matching fix.
For issues without quick fixes, edit the file manually.
4. Verify
Re-run inspections to confirm issues are resolved.
Related skills
FAQ
What does php-code-review do?
php-code-review skill documents Review PHP code using PhpStorm inspections.
When should I use php-code-review?
User asks about php-code-review, review php code using phpstorm inspections. use when editing php files, reviewing code qua.
Is this skill safe to install?
Review the Security Audits panel on this page before installing in production.