<?php abstract class SomeAbstract { public function __call($method, $args) { } } final class SomeClass extends SomeAbstract { public function __call(string $method, array $args) { } }
You have javascript disabled. You will not be able to edit any code.