mirror of
https://github.com/php/php-src.git
synced 2025-08-15 13:38:49 +02:00

Non-early-bound classes report inheritance errors at the first line of the class, if no better line information is available (we should really store line numbers for properties at least...) Early bound classes report it at the last line of the class instead. Make the error reporting consistent by always reporting at the first line.
30 lines
521 B
PHP
30 lines
521 B
PHP
--TEST--
|
|
Redeclare inherited public static property as protected static.
|
|
--FILE--
|
|
<?php
|
|
class A
|
|
{
|
|
public static $p = "A::p (static)";
|
|
static function showA()
|
|
{
|
|
echo self::$p . "\n";
|
|
}
|
|
}
|
|
|
|
class B extends A
|
|
{
|
|
protected static $p = "B::p (static)";
|
|
static function showB()
|
|
{
|
|
echo self::$p . "\n";
|
|
}
|
|
}
|
|
|
|
|
|
A::showA();
|
|
|
|
B::showA();
|
|
B::showB();
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Access level to B::$p must be public (as in class A) in %s on line 11
|