Help wantedbugtraits
Metriche repository
- Star
- (5369 star)
- Metriche merge PR
- (Merge medio 3g 12h) (5 PR mergiate in 30 g)
Descrizione
<?php
trait CreatedAt {
protected DateTimeImmutable $createdAt;
private function onCreated(): void {
$this->createdAt = new DateTimeImmutable();
}
}
class Foo {
use CreatedAt;
public function __construct() {
$this->onCreated();
}
}
class Bar extends Foo {}
Property $createdAt was initialized it Foo constructor. But psalm knows nothing about it in Bar.