<?php interface iTest{ const version = "123";}class TestCase implements iTest{ const version = "456"; public static function echoConstant() { echo self::version; }}TestCase::echoConstant();