summaryrefslogtreecommitdiff
path: root/tests/classes/interface_optional_arg.phpt
blob: 6fc97f55fb7baadc2816e03a0d1f73ee4d2194d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
--TEST--
ZE2 An interface method allows additional default arguments
--FILE--
<?php

error_reporting(4095);

interface test {
	public function bar();
}

class foo implements test {

	public function bar($foo = NULL) {
		echo "foo\n";
	}
}

$foo = new foo;
$foo->bar();

?>
--EXPECT--
foo