php-8.3

A set of coding rules for PHP 8.3, the programming language version. It covers features such as typed class constants and attributes for method overrides.

In plain words
What is it for?
Use it when writing or reviewing PHP 8.3 code, especially constants, dynamic class-constant access, visibility, enums, and related best practices.
Why use it?
It helps keep PHP 8.3 code consistent with the language’s newer features and recommended usage patterns.

Cursor rule for Cursor

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add rules/mitas/cursor-rules/php-8.3
Clone the repo
git clone --depth 1 https://github.com/mitas/cursor-rules

Made for: Cursor.

Per session 0 Nothing until a file matches its globs; then the whole rule loads.
When invoked 2,260 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00000 $0.02260
Opus 5 $0.00000 $0.01130
Sonnet 5 $0.00000 $0.00452
Haiku 4.5 $0.00000 $0.00226

Measured yesterday against content hash 9e7b8e1d2c79, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

php-8.3 scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.cursor/rules/php-8.3.mdc · 337 lines

How it starts

The opening of the file, as written. The whole thing — 337 lines — stays where its author put it; the contents beside it link to each section on GitHub.

PHP 8.3 Features and Best Practices

Overview

PHP 8.3 continues to refine the language with new features, performance improvements, and subtle enhancements. This document outlines the key features introduced in PHP 8.3 and provides best practices for their implementation.

Key Language Features

Typed Class Constants

PHP 8.3 introduces typed class constants, allowing you to specify the type of constant values.

class Configuration {
    public const string DATABASE_DRIVER = 'mysql';
    public const int CONNECTION_TIMEOUT = 30;
    protected const array DEFAULT_OPTIONS = ['retries' => 3, 'timeout' => 5];
}

Best Practices:

  • Use typed constants to enforce type safety for important configuration values
  • Apply appropriate visibility modifiers (public, protected, private) to constants
  • Use typed constants in combination with final when appropriate
  • Document constants with PHPDoc comments for additional context
  • Consider using enums instead of string constants for values that represent a fixed set of options

Dynamic Class Constant Fetch

PHP 8.3 enables fetching class constants dynamically, similar to dynamic property access.

class Constants {
    public const ERROR_NOT_FOUND = 'not_found';
    public const ERROR_UNAUTHORIZED = 'unauthorized';
}

function getErrorMessage(string $errorType): string {
    return Constants::{"ERROR_$errorType"};
}

// Usage
$message = getErrorMessage('NOT_FOUND');

Best Practices:

  • Use dynamic constant fetching when you need to access constants programmatically
  • Validate the constant name before attempting to access it dynamically
  • Consider using reflection for more complex dynamic constant access
  • Document code that uses dynamic constant fetching thoroughly
  • Use with caution as it can make code harder to understand and maintain

New #[\Override] Attribute

PHP 8.3 adds the #[\Override] attribute to explicitly mark methods that override a parent method or implement an interface method.

Read the full file on GitHub · 337 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. yesterday First seen · 337 lines · 2,260 tokens per session scan A 9e7b8e1d2c79

Subscribe to this mod's changes

php-8.3 is a cursor rule published in the GitHub repository mitas/cursor-rules (2 stars, last pushed 1y ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 2,260 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.