mirror of
https://github.com/php/php-src.git
synced 2025-08-19 17:04:47 +02:00

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.
20 lines
519 B
PHP
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
|
|
|