1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-27 12:55:26 +01:00
psalm/docs/running_psalm/issues/UnsupportedPropertyReferenceUsage.md
2023-05-12 14:12:12 -05:00

624 B

UnsupportedPropertyReferenceUsage

Psalm cannot guarantee the soundness of code that uses references to properties.

Examples of Uncaught Errors

  • Instance property assigned wrong type:
<?php
class A {
    public int $b = 0;
}
$a = new A();
$b = &$a->b;
$b = ''; // Fatal error
  • Static property assigned wrong type:
<?php
class A {
    public static int $b = 0;
}
$b = &A::$b;
$b = ''; // Fatal error
  • Readonly property reassigned:
<?php
class A {
    public function __construct(
        public readonly int $b,
    ) {
    }
}
$a = new A(0);
$b = &$a->b;
$b = 1; // Fatal error