interface_constant_inheritance_007.phpt 213 B

123456789
  1. --TEST--
  2. Ensure a interface can not have private constants
  3. --FILE--
  4. <?php
  5. interface A {
  6. private const FOO = 10;
  7. }
  8. --EXPECTF--
  9. Fatal error: Access type for interface constant A::FOO must be public in %s on line 3