OverriddenMethodAccess
An overriding method reduces the visibility of the parent method.
Example
Section titled “Example”<?phpclass Base { public function render(): void {}}
class Child extends Base { protected function render(): void {} // reducing public to protected}How to fix
Section titled “How to fix”Keep the same or wider visibility in the overriding method.