php-8.0

A set of PHP 8.0 coding rules covering features added in that version of PHP, such as named arguments, union types, match expressions, and attributes.

In plain words
What is it for?
Use it when writing or reviewing PHP 8.0 code. It gives guidance on function calls with named parameters, values that may have multiple types, and other PHP 8.0 language features.
Why use it?
It helps code use PHP 8.0 features correctly and consistently, while avoiding patterns that make typed code harder to read or maintain.

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.0
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,164 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.02164
Opus 5 $0.00000 $0.01082
Sonnet 5 $0.00000 $0.00433
Haiku 4.5 $0.00000 $0.00216

Measured yesterday against content hash e4bbd07026b3, 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.0 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.0.mdc · 302 lines

How it starts

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

PHP 8.0 Features and Best Practices

Overview

PHP 8.0 represents a major leap forward with significant new features, performance improvements, and better type safety. This document outlines the key features introduced in PHP 8.0 and how to effectively use them in your code.

Key Language Features

Named Arguments

Named arguments allow you to pass values to a function by specifying the parameter name, making function calls more readable and maintainable.

// Without named arguments
htmlspecialchars($string, ENT_QUOTES | ENT_SUBSTITUTE, 'UTF-8', false);

// With named arguments
htmlspecialchars(
    string: $string,
    flags: ENT_QUOTES | ENT_SUBSTITUTE,
    encoding: 'UTF-8',
    double_encode: false
);

Best Practices:

  • Use named arguments for functions with numerous or optional parameters
  • Especially useful for parameters that have default values
  • Improves code readability when calling functions with boolean flags
  • Allows skipping optional parameters in the middle of the parameter list
  • Consider parameter names as part of your public API when designing functions

Union Types

Union types allow a parameter or return value to be of multiple different types.

function process(string|int $id): int|float {
    if (is_string($id)) {
        return (int) $id;
    }
    
    return $id * 1.5;
}

Best Practices:

  • Use union types to specify multiple valid types for parameters and returns
  • Combine with nullable types using ? (e.g., ?string|int is equivalent to string|int|null)
  • Keep union types as narrow as possible for better type safety
  • Don't overuse - if a function accepts too many different types, reconsider its design
  • Document behavior for different types to make functionality clear

Constructor Property Promotion

Constructor property promotion simplifies class definitions by combining property declarations with constructor parameters.

// Before PHP 8.0
class User {
    private string $name;
    private int $age;
    
    public function __construct(string $name, int $age) {
        $this->name = $name;
        $this->age = $age;
    }
}

// With PHP 8.0
class User {
    public function __construct(
        private string $name,
        private int $age
    ) {}
}

Read the full file on GitHub · 302 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 · 302 lines · 2,164 tokens per session scan A e4bbd07026b3

Subscribe to this mod's changes

php-8.0 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,164 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.