***Linting:** Adhere to PSR-12 coding standards. No explicit linting command is configured, but static analysis tools like PHPStan or Psalm may be used locally.
## Code Style Guidelines
***Imports:** Use fully qualified class names and `use` statements at the top of files.
***Formatting:**
* Indent with 4 spaces.
* Use `lf` for line endings.
* Ensure a final newline at the end of files.
* Trim trailing whitespace.
***Types:** Utilize PHP 7.4+ type hints for arguments, return types, and properties where appropriate.