mirror of
https://github.com/php/php-src.git
synced 2024-12-02 22:34:55 +08:00
7ce8c5ad89
Closes GH-5465
20 lines
387 B
PHP
20 lines
387 B
PHP
--TEST--
|
|
Testing __set implementation with wrong declaration
|
|
--FILE--
|
|
<?php
|
|
|
|
abstract class b {
|
|
abstract function __set($a, $b);
|
|
}
|
|
|
|
class a extends b {
|
|
private function __set($a, $b) {
|
|
}
|
|
}
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Warning: The magic method a::__set() must have public visibility in %s on line %d
|
|
|
|
Fatal error: Access level to a::__set() must be public (as in class b) in %s on line 8
|