Lines Matching refs:two
12 public static $mapWithConst = array(self::ONE => 'one', self::TWO => 'two',);
14 public static $mapWithConst1 = array(1 => 'one', self::TWO => 'two',);
15 public static $mapWithConst2 = array(self::ONE => 'one', 1 => 'two',);
17 public static $mapWithoutConst = array(1 => 'one', 1 => 'two',);
20 $mapWithConst = array(1 => 'one', 1 => 'two',);
22 $mapWithoutConst = array(Foo::ONE => 'one', Foo::TWO => 'two',);
23 $mapWithoutConst0 = array(1 => 'one', 1 => 'two',);
24 $mapWithoutConst1 = array(ONE => 'one', 1 => 'two',);
25 $mapWithoutConst2 = array(1 => 'one', TWO => 'two',);
26 $mapWithoutConst3 = array(ONE => 'one', TWO => 'two',);
40 string(3) "two"
41 string(3) "two"
42 string(3) "two"
43 string(3) "two"
44 string(3) "two"
45 string(3) "two"
46 string(3) "two"
47 string(3) "two"
48 string(3) "two"
49 string(3) "two"