blob: b8ad77570658d6a312fedb7a51197573249a4f42 [file] [log] [blame]
<?php
class ConstantClass {
private static $index = 0;
const CLASS_CONSTANT1 = ["a", "b"];
const CLASS_CONSTANT2 = self::CLASS_CONSTANT1[self::$index];
}