<?php interface Contract { const PASSWORD_RESET = 'passwords.reset'; public function reset(): void; } class A implements Contract { public function reset(): void { echo static::PASSWORD_RESET, "\n"; } } class B extends A { const PASSWORD_RESET = 'foobar'; } (new A())->reset(); (new B())->reset();
You have javascript disabled. You will not be able to edit any code.
Value for `_results` contains invalid data `array`