Skip to content
This repository has been archived by the owner on Apr 25, 2023. It is now read-only.

icanhazstring/phpstan-readonly-property

Repository files navigation

icanhazstring/phpstan-readonly-property

Support #[IsReadonly] class properties for PHPStan. This library is used to have a transition from PHP 8.0 to 8.1 until readonly keyword will be introduced.

Installation

composer require --dev icanhazstring/phpstan-readonly-property

Then use PHPStan Extension Installer using

composer require --dev phpstan/extension-installer

or manually add vendor/icanhazstring/phpstan-readonly-property/rules.neon into your phpstan.neon configuration.

# phpstan.neon

includes:
    - vendor/icanhazstring/phpstan-readonly-property/rules.neon

Usage

Add #[IsReadonly] to the property you want to have readonly only.

<?php

final class User
{
    public function __constrct(
        #[IsReadonly] public string $name
    ) {}
}

$user = new User('fu');
$user->name = 'bar'; // Will fail

Known limitations

There are some limitations to the static analysis from using 8.1 readonly flag.

Use of multiple setters can't be checked

If you are initializing your #[IsReadonly] property using a setter, PHPStan can NOT detect multiple calls of that setter to a readonly property.

final class Fu
{
    #[IsReadonly]
    public string $value;

    public function setValue(string $value)
    {
        $this->value = $value;
    }
}

$fu = new Fu();
$fu->setValue('bar');
$fu->setValue('baz'); // Will work with this extension, but NOT with 8.1 `readonly`

About

PHPStan extension to support readonly class properties using #[IsReadonly]

Topics

Resources

License

Stars

Watchers

Forks

Languages