Emitted when an Override
attribute was added to a method that does not override a method from a parent class or implemented interface.
<?php
class A {
function receive(): void
{
}
}
class B extends A {
#[Override]
function recieve(): void
{
}
}
A fatal error will be thrown.