Skip to content

Consistency rules

This document details the rules available in the Consistency category.

RuleCode
Ambiguous Constant Accessambiguous-constant-access
Ambiguous Function Callambiguous-function-call
Array Stylearray-style
Assertion Styleassertion-style
Block Statementblock-statement
Braced String Interpolationbraced-string-interpolation
Class Nameclass-name
Constant Nameconstant-name
Enum Nameenum-name
File Namefile-name
Function Namefunction-name
Interface Nameinterface-name
Lowercase Keywordlowercase-keyword
Lowercase Type Hintlowercase-type-hint
Method Namemethod-name
No Alias Functionno-alias-function
No Alternative Syntaxno-alternative-syntax
No Fully Qualified Global Class-Likeno-fully-qualified-global-class-like
No Fully Qualified Global Constantno-fully-qualified-global-constant
No Fully Qualified Global Functionno-fully-qualified-global-function
No Hash Commentno-hash-comment
No Php Tag Terminatorno-php-tag-terminator
No Trailing Spaceno-trailing-space
Property Nameproperty-name
String Stylestring-style
Trait Nametrait-name
Variable Namevariable-name

ambiguous-constant-access

Enforces that all constant references made from within a namespace are explicit.

When an unqualified constant like PHP_VERSION is referenced from within a namespace, PHP performs a runtime fallback check (current namespace -> global namespace). This ambiguity can lead to unexpected behavior if a constant with the same name is later defined in the namespace.

Making references explicit improves readability and prevents bugs.

Configuration

OptionTypeDefault
enabledbooleanfalse
levelstring"help"

Examples

Correct code

php
<?php

namespace App;

use const PHP_VERSION;

// OK: Explicitly imported
$version1 = PHP_VERSION;

// OK: Explicitly global
$version2 = \PHP_VERSION;

Incorrect code

php
<?php

namespace App;

// Ambiguous: could be App\PHP_VERSION or \PHP_VERSION
$version = PHP_VERSION;

ambiguous-function-call

Enforces that all function calls made from within a namespace are explicit.

When an unqualified function like strlen() is called from within a namespace, PHP performs a runtime fallback check (current namespace -> global namespace). This ambiguity prevents PHP from performing powerful compile-time optimizations, such as replacing a call to strlen() with the highly efficient STRLEN opcode.

Making calls explicit improves readability, prevents bugs, and allows for significant performance gains in some cases.

Configuration

OptionTypeDefault
enabledbooleanfalse
levelstring"help"

Examples

Correct code

php
<?php

namespace App;

use function strlen;

// OK: Explicitly imported
$length1 = strlen("hello");

// OK: Explicitly global
$length2 = \strlen("hello");

// OK: Explicitly namespaced
$value = namespace\my_function();

Incorrect code

php
<?php

namespace App;

// Ambiguous: could be App\strlen or \strlen
$length = strlen("hello");

array-style

Suggests using the short array style [..] instead of the long array style array(..), or vice versa, depending on the configuration. The short array style is more concise and is the preferred way to define arrays in PHP.

Configuration

OptionTypeDefault
enabledbooleantrue
levelstring"note"
stylestring"short"

Examples

Correct code

php
<?php

// By default, `style` is 'short', so this snippet is valid:
$arr = [1, 2, 3];

Incorrect code

php
<?php

// By default, 'short' is enforced, so array(...) triggers a warning:
$arr = array(1, 2, 3);

assertion-style

Enforces a consistent style for PHPUnit assertion calls within test methods.

Maintaining a consistent style (e.g., always using static:: or $this->) improves code readability and helps enforce team-wide coding standards in test suites. This rule can be configured to enforce the preferred style.

Requirements

  • Integration: PHPUnit

Configuration

OptionTypeDefault
enabledbooleantrue
levelstring"warning"
stylestring"static"

Examples

Correct code

php
<?php
// configured style: "static"
final class SomeTest extends TestCase
{
    public function testSomething(): void
    {
        static::assertTrue(true);
    }
}

Incorrect code

php
<?php
// configured style: "static"
final class SomeTest extends TestCase
{
    public function testSomething(): void
    {
        $this->assertTrue(true); // Incorrect style
        self::assertFalse(false); // Incorrect style
    }
}

block-statement

Enforces that if, else, for, foreach, while, do-while statements always use a block statement body ({ ... }) even if they contain only a single statement.

This improves readability and prevents potential errors when adding new statements.

Configuration

OptionTypeDefault
enabledbooleantrue
levelstring"note"

Examples

Correct code

php
<?php

if (true) {
    echo "Hello";
}

for ($i = 0; $i < 10; $i++) {
    echo $i;
}

Incorrect code

php
<?php

if (true)
    echo "Hello";

for ($i = 0; $i < 10; $i++)
    echo $i;

braced-string-interpolation

Enforces the use of curly braces around variables within string interpolation.

Using curly braces ({$variable}) within interpolated strings ensures clarity and avoids potential ambiguity, especially when variables are followed by alphanumeric characters. This rule promotes consistent and predictable code.

Configuration

OptionTypeDefault
enabledbooleantrue
levelstring"note"

Examples

Correct code

php
<?php

$a = "Hello, {$name}!";
$b = "Hello, {$name}!";
$c = "Hello, {$$name}!";
$d = "Hello, {${$object->getMethod()}}!";

Incorrect code

php
<?php

$a = "Hello, $name!";
$b = "Hello, ${name}!";
$c = "Hello, ${$name}!";
$d = "Hello, ${$object->getMethod()}!";

class-name

Detects class declarations that do not follow class naming convention.

Class names should be in class case, also known as PascalCase.

Configuration

OptionTypeDefault
enabledbooleantrue
levelstring"help"
psrbooleanfalse

Examples

Correct code

php
<?php

class MyClass {}

Incorrect code

php
<?php

class my_class {}

class myClass {}

class MY_CLASS {}

constant-name

Detects constant declarations that do not follow constant naming convention.

Constant names should be in constant case, also known as UPPER_SNAKE_CASE.

Configuration

OptionTypeDefault
enabledbooleantrue
levelstring"help"

Examples

Correct code

php
<?php

const MY_CONSTANT = 42;

class MyClass {
    public const int MY_CONSTANT = 42;
}

Incorrect code

php
<?php

const myConstant = 42;
const my_constant = 42;
const My_Constant = 42;

class MyClass {
    public const int myConstant = 42;
    public const int my_constant = 42;
    public const int My_Constant = 42;
}

enum-name

Detects enum declarations that do not follow class naming convention.

Enum names should be in class case, also known as PascalCase.

Configuration

OptionTypeDefault
enabledbooleantrue
levelstring"help"

Examples

Correct code

php
<?php

enum MyEnum {}

Incorrect code

php
<?php

enum my_enum {}
enum myEnum {}
enum MY_ENUM {}

file-name

Ensures that a file containing a single class-like definition is named after that definition.

For example, a file containing class Foo must be named Foo.php. Optionally, this rule can also check functions: a file containing a single function foo must be named foo.php.

Configuration

OptionTypeDefault
enabledbooleantrue
levelstring"warning"
check-functionsbooleanfalse

Examples

Correct code

php
<?php
// File: test.php

namespace App;

class test
{
}

Incorrect code

php
<?php
// File: test.php

namespace App;

class Foo
{
}

function-name

Detects function declarations that do not follow camel or snake naming convention.

Function names should be in camel case or snake case, depending on the configuration.

Configuration

OptionTypeDefault
enabledbooleantrue
levelstring"help"
camelbooleanfalse
eitherbooleanfalse

Examples

Correct code

php
<?php

function my_function() {}

Incorrect code

php
<?php

function MyFunction() {}

function My_Function() {}

interface-name

Detects interface declarations that do not follow class naming convention.

Interface names should be in class case and suffixed with Interface, depending on the configuration.

Configuration

OptionTypeDefault
enabledbooleantrue
levelstring"help"
psrbooleanfalse

Examples

Correct code

php
<?php

interface MyInterface {}

Incorrect code

php
<?php

interface myInterface {}
interface my_interface {}
interface MY_INTERFACE {}

lowercase-keyword

Enforces that PHP keywords (like if, else, return, function, etc.) be written in lowercase. Using uppercase or mixed case is discouraged for consistency and readability.

Configuration

OptionTypeDefault
enabledbooleantrue
levelstring"help"

Examples

Correct code

php
<?php

if (true) {
    echo "All keywords in lowercase";
} else {
    return;
}

Incorrect code

php
<?PHP

IF (TRUE) {
    ECHO "Keywords not in lowercase";
} ELSE {
    RETURN;
}

lowercase-type-hint

Enforces that PHP type hints (like void, bool, int, float, etc.) be written in lowercase. Using uppercase or mixed case is discouraged for consistency and readability.

Configuration

OptionTypeDefault
enabledbooleantrue
levelstring"help"

Examples

Correct code

php
<?php

function example(int $param): void {
    return;
}

Incorrect code

php
<?php

function example(Int $param): VOID {
    return;
}

method-name

Detects method declarations that do not follow the configured naming convention.

By default, method names should be in camelCase. Magic methods (prefixed with __) are always excluded.

The use-snake-case-for-tests option enforces snake_case for test methods (names starting with test), which is a common convention in PHPUnit.

Configuration

OptionTypeDefault
enabledbooleanfalse
levelstring"help"
camelbooleantrue
eitherbooleanfalse
use-snake-case-for-testsbooleanfalse

Examples

Correct code

php
<?php

class Foo
{
    public function getName(): string {}
    public function setName(string $name): void {}
}

Incorrect code

php
<?php

class Foo
{
    public function GetName(): string {}
    public function set_name(string $name): void {}
}

no-alias-function

Detects usage of function aliases (e.g., diskfreespace instead of disk_free_space) and suggests calling the canonical (original) function name instead. This is primarily for consistency and clarity.

Configuration

OptionTypeDefault
enabledbooleantrue
levelstring"note"

Examples

Correct code

php
<?php

// 'disk_free_space' is the proper name instead of 'diskfreespace'
$freeSpace = disk_free_space("/");

Incorrect code

php
<?php

// 'diskfreespace' is an alias for 'disk_free_space'
$freeSpace = diskfreespace("/");

no-alternative-syntax

Detects the use of alternative syntax for control structures (endif, endwhile, endfor, endforeach, endswitch).

The brace-style syntax is preferred for consistency with the rest of the codebase and is the convention used by the Symfony coding standards.

Configuration

OptionTypeDefault
enabledbooleanfalse
levelstring"warning"

Examples

Correct code

php
<?php

if ($condition) {
    echo 'yes';
}

Incorrect code

php
<?php

if ($condition):
    echo 'yes';
endif;

no-fully-qualified-global-class-like

Disallows fully-qualified class-like references within a namespace.

Instead of using the backslash prefix (e.g., new \DateTime() or \Exception in a type hint), prefer an explicit use import statement. This improves readability and keeps imports centralized at the top of the file.

Configuration

OptionTypeDefault
enabledbooleanfalse
levelstring"help"

Examples

Correct code

php
<?php

namespace App;

use DateTime;
use Exception;

$dt = new DateTime();

function foo(DateTime $dt): Exception {}

Incorrect code

php
<?php

namespace App;

$dt = new \DateTime();

function foo(\DateTime $dt): \Exception {}

no-fully-qualified-global-constant

Disallows fully-qualified references to global constants within a namespace.

Instead of using the backslash prefix (e.g., \PHP_VERSION), prefer an explicit use const import statement. This improves readability and keeps imports centralized at the top of the file.

Configuration

OptionTypeDefault
enabledbooleanfalse
levelstring"help"

Examples

Correct code

php
<?php

namespace App;

use const PHP_VERSION;

$version = PHP_VERSION;

Incorrect code

php
<?php

namespace App;

$version = \PHP_VERSION;

no-fully-qualified-global-function

Disallows fully-qualified references to global functions within a namespace.

Instead of using the backslash prefix (e.g., \strlen()), prefer an explicit use function import statement. This improves readability and keeps imports centralized at the top of the file.

Configuration

OptionTypeDefault
enabledbooleanfalse
levelstring"help"

Examples

Correct code

php
<?php

namespace App;

use function strlen;

$length = strlen("hello");

Incorrect code

php
<?php

namespace App;

$length = \strlen("hello");

no-hash-comment

Detects shell-style comments ('#') in PHP code. Double slash comments ('//') are preferred in PHP, as they are more consistent with the language's syntax and are easier to read.

Configuration

OptionTypeDefault
enabledbooleantrue
levelstring"warning"

Examples

Correct code

php
<?php

// This is a good comment.

Incorrect code

php
<?php

# This is a shell-style comment.

no-php-tag-terminator

Discourages the use of ?><?php as a statement terminator. Recommends using a semicolon (;) instead for clarity and consistency.

Configuration

OptionTypeDefault
enabledbooleantrue
levelstring"note"

Examples

Correct code

php
<?php

echo "Hello World";

Incorrect code

php
<?php

echo "Hello World" ?><?php

no-trailing-space

Detects trailing whitespace at the end of comments. Trailing whitespace can cause unnecessary diffs and formatting issues, so it is recommended to remove it.

Configuration

OptionTypeDefault
enabledbooleantrue
levelstring"note"

Examples

Correct code

php
<?php

// This is a good comment.

Incorrect code

php
<?php

// This is a comment with trailing whitespace.

property-name

Detects class property declarations that do not follow camel or snake naming convention.

Property names should be in camel case or snake case, depending on the configuration.

Configuration

OptionTypeDefault
enabledbooleanfalse
levelstring"help"
camelbooleantrue
eitherbooleanfalse

Examples

Correct code

php
<?php

final class Foo {
    public string $myProperty;

    public function __construct(
        public int $myPromotedProperty,
    ) {}
}

Incorrect code

php
<?php

final class Foo {
    public string $My_Property;

    public function __construct(
        public int $My_Promoted_Property,
    ) {}
}

string-style

Enforces a consistent string style: either prefer string interpolation over concatenation, or prefer concatenation over interpolation.

With style: interpolation (default), flags concatenation like "foo" . $a . "bar" and suggests "foo{$a}bar" instead.

With style: concatenation, flags interpolation like "foo{$a}bar" and suggests "foo" . $a . "bar" instead.

Only simple, interpolable expressions are considered: variables, property accesses, array accesses, and method calls. Concatenation involving function calls, static access, or complex expressions is never flagged.

Configuration

OptionTypeDefault
enabledbooleanfalse
levelstring"note"
stylestring"interpolation"

Examples

Correct code

php
<?php

// With the default `style: interpolation`:
$a = "Hello, {$name}!";
$b = "value: {$obj->name}";

// Complex expressions stay as concatenation (never flagged):
$c = "result: " . strtolower($input);
$d = "class: " . Foo::class;

Incorrect code

php
<?php

// With the default `style: interpolation`:
$a = "Hello, " . $name . "!";
$b = "value: " . $obj->name;

trait-name

Detects trait declarations that do not follow class naming convention. Trait names should be in class case and suffixed with Trait, depending on the configuration.

Configuration

OptionTypeDefault
enabledbooleantrue
levelstring"help"
psrbooleanfalse

Examples

Correct code

php
<?php

trait MyTrait {}

Incorrect code

php
<?php

trait myTrait {}
trait my_trait {}
trait MY_TRAIT {}

variable-name

Detects variable declarations that do not follow camel or snake naming convention.

Variable names should be in camel case or snake case, depending on the configuration.

Configuration

OptionTypeDefault
enabledbooleanfalse
levelstring"help"
camelbooleanfalse
eitherbooleantrue
check-parametersbooleantrue

Examples

Correct code

php
<?php

$my_variable = 1;

function foo($my_param) {}

Incorrect code

php
<?php

$MyVariable = 1;
$My_Variable = 2;

function foo($MyParam) {}

Released under the MIT and/or Apache-2.0 License.