blob: 7cd4d4bee1d2606e8cb877fb7cb021a87e15226b (
plain)
1
2
3
4
5
6
7
8
9
10
|
--TEST--
__set first parameter should be a string when typed
--FILE--
<?php
class Foo {
function __set(\Countable $name, $value) {}
}
?>
--EXPECTF--
Fatal error: Foo::__set(): Parameter #1 ($name) must be of type string when declared in %s on line %d
|