mirror of
https://github.com/danog/psalm.git
synced 2024-11-26 20:34:47 +01:00
311 B
311 B
ImpureStaticProperty
Emitted when attempting to use a static property from a function or method marked as pure
<?php
class ValueHolder {
public static ?string $value = null;
/**
* @psalm-pure
*/
public static function get(): ?string {
return self::$value;
}
}