check-code-style
Installation
SKILL.md
Code Style Check
Analyze PHP code for style consistency and PSR-12 compliance.
Detection Patterns
1. PSR-12 Violations
// BAD: Opening brace on same line for class
class User {
}
// GOOD: Opening brace on new line
class User
{
}