mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 04:45:20 +01:00
287 B
287 B
UndefinedMagicPropertyFetch
Emitted when getting a property on an object that doesn’t have that magic property defined
<?php
/**
* @property string $bar
*/
class A {
public function __get(string $name) {
return "cool";
}
}
$a = new A();
echo $a->foo;