Psalm
Get started
Documentation
Paid support
Plugins
Blog
GitHub
<?php abstract class A { /** * @readonly */ public string $s; abstract public function __construct( string $s ); } class B extends A { public function __construct(string $s) { //$this->s = $s; } } $b = new B( 'hello' ); echo $b->s;
Snippet created on May 27 2023 at 13:39 UTC
Settings
Get link