1<?php
2
3class Root1_Constant_Definer
4{
5 const CONSTANT = 'value';
6}
7
8class Root1_Constant_Empty
9{
10}
11
12class Root1_Constant_Referencer extends Root2_Empty_Empty
13{
14 protected $propertyReferencingAnExternalConstant = Root1_Constant_Definer::CONSTANT;
15}
16