Closed shmurakami closed 4 years ago
In PHP8 it occurs this warning.
Private methods cannot be final as they are never overridden by other classes
Caused by this PHP8 change https://wiki.php.net/rfc/inheritance_private_methods
private and final modifiers can't be used both.
private
final
In PHP8 it occurs this warning.
Caused by this PHP8 change https://wiki.php.net/rfc/inheritance_private_methods
private
andfinal
modifiers can't be used both.