<?php abstract class Constr { abstract public function __construct(string $a); abstract public function method(string $b): void; } class Foo extends Constr { public function __construct(string $a) { } public function method(string $b): void { } } class Bar extends Constr { public function __construct() { } public function method(string $b): void { } } new Foo("a"); new Bar();
You have javascript disabled. You will not be able to edit any code.