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
{
}

// BAD: Opening brace on new line for methods
Related skills
Installs
6
GitHub Stars
71
First Seen
Mar 17, 2026