What problem does it solve? PHP codebases drift into inconsistent style when developers forget strict_types declarations, inline fully qualified class names, or mix naming languages across files. This Skill gives an AI agent a single set of enforceable conventions so every new or refactored PHP class follows the same rules. ## Core Features & Use Cases - Strict Types Enforcement: Requires declare(strict_types=1); immediately after the opening <?php tag in every PHP file, including files generated via Artisan. - Use-Statement Rules: Mandates importing classes with use statements instead of inline FQCNs, with a defined ordering (Illuminate facades, Cms classes, App classes, Exceptions, Traits/Interfaces). - Naming Language Discipline: New variables, methods, and classes are named in English while existing Spanish schema and model names (e.g. CiudadRepo, departamento_id) are preserved as-is. - Use Case: When asking an agent to create a new service class in a Laravel repo, the agent automatically adds the strict_types declaration, orders imports correctly, and names new methods in English without touching legacy Spanish identifiers. ## Quick Start Apply the PHP conventions skill when creating or refactoring any PHP class in this Laravel repository so it follows strict-types, import ordering, and naming rules.