php-src/ext/spl/tests/SplObjectStorage_attach_invalid_parameter.phpt
Gabriel Caruso fef879a2d6 Use bool instead of boolean while throwing a type error
PHP requires boolean typehints to be written "bool" and disallows
"boolean" as an alias. This changes the error messages to match
the actual type name and avoids confusing messages like "must be
of type boolean, boolean given".

This a followup to ce1d69a1f6, which
implements the same change for integer->int.
2018-02-04 23:09:40 +01:00

20 lines
519 B
PHP

--TEST--
Check that SplObjectStorage::attach generates a warning and returns NULL when bad params are passed
--CREDITS--
PHPNW Testfest 2009 - Simon Westcott (swestcott@gmail.com)
--FILE--
<?php
$s = new SplObjectStorage();
var_dump($s->attach(true));
var_dump($s->attach(new stdClass, true, true));
?>
--EXPECTF--
Warning: SplObjectStorage::attach() expects parameter 1 to be object, bool given in %s on line %d
NULL
Warning: SplObjectStorage::attach() expects at most 2 parameters, 3 given in %s on line %d
NULL