1<?php 2 3class Foo { 4 public const BAR = 5 self::BAZ 6 + NonExistent::CLASS_CONSTANT; 7 public const BAZ = 42; 8} 9