summaryrefslogtreecommitdiff
path: root/Zend/tests/required_param_after_optional.phpt
blob: cd715e77d4819f7194dbb5e10544c7cc88d2a2c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--TEST--
Required parameter after optional is deprecated
--FILE--
<?php

function test($testA = null, $testB = null, $testC) {}
function test2(Type $test2A = null, $test2B = null, $test2C) {}
function test3(Type $test3A = null, Type2 $test3B = null, $test3C) {}

?>
--EXPECTF--
Deprecated: Required parameter $testC follows optional parameter $testA in %s on line %d

Deprecated: Required parameter $test2C follows optional parameter $test2B in %s on line %d