P
Size: a a a
P
P
F
F
F
F
DM
P
AK
AK
AK
P
P
AK
P
P
AK
P
// From:
class Test {
public function __construct(public Dependency $prop = new Dependency()) {}
}
// To:
class Test {
public Dependency $prop /* = new Dependency() */;
public function __construct(Dependency $prop = new Dependency()) {
$this->prop = $prop;
}
}
P