summaryrefslogtreecommitdiff
path: root/ext/reflection/tests/ReflectionParameter_DefaultValueConstant_error.phpt
blob: 984b06efe2228a989391cedfb1d603cd2e94cce4 (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
25
--TEST--
ReflectionParameter::getDefaultValueConstant() should raise exception on non optional parameter
--FILE--
<?php

define("CONST_TEST_1", "const1");

function ReflectionParameterTest($test, $test2 = CONST_TEST_1) {
	echo $test;
}
$reflect = new ReflectionFunction('ReflectionParameterTest');
foreach($reflect->getParameters() as $param) {
	try {
		echo $param->getDefaultValueConstantName() . "\n";
	}
	catch(ReflectionException $e) {
		echo $e->getMessage() . "\n";
	}
}
?>
==DONE==
--EXPECT--
Parameter is not optional
CONST_TEST_1
==DONE==