ru_php/Zend/tests/pipe_operator/optional_parameters.phpt

16 lines
197 B
Plaintext
Raw Permalink Normal View History

--TEST--
Pipe operator accepts optional-parameter functions
--FILE--
<?php
function _test(int $a, int $b = 3) {
return $a + $b;
}
$res1 = 5 |> '_test';
var_dump($res1);
?>
--EXPECT--
int(8)