constants_visibility_error_003.phpt 296 B

1234567891011121314
  1. --TEST--
  2. A redeclared class constant must have the same or higher visibility
  3. --FILE--
  4. <?php
  5. class A {
  6. public const publicConst = 0;
  7. }
  8. class B extends A {
  9. protected const publicConst = 1;
  10. }
  11. --EXPECTF--
  12. Fatal error: Access level to B::publicConst must be public (as in class A) in %s on line 9