interface TestInterface
{
public function test(int $arg): int;
}
class Tester1 impliments TestInterface
{
public function test(int $arg, $arg2 = 1): int
{
//...
}
}
class Tester2 impliments TestInterface
{
public function test($arg, $arg1 = [], $arg2 = true): int
{
//...
}
}
Interface TestInterface
{
public function test(...$args): int
}
$times = range(time(strtotime('25.11.2013 10:32:00')), time(strtotime('25.11.2013 23:59:00')), 60);