<?php
interface a {
public function bar();
}
interface b extends a {
public function foo();
public function bar($a);
}
?>
It is showing a fatal error of signature missmatch in method. is not it possible to override a method of interface in php?
b.baraccepts$a, whilea.bardoes not, which is the source of the fatal error.func_get_args()