-
-
Notifications
You must be signed in to change notification settings - Fork 467
/
constantsinterface.zep
65 lines (52 loc) · 1.05 KB
/
constantsinterface.zep
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
namespace Stub;
class ConstantsInterface implements TestInterface
{
public function testReadInterfaceConstant1()
{
return TestInterface::C1;
}
public function testReadInterfaceConstant2()
{
return TestInterface::C2;
}
public function testReadInterfaceConstant3()
{
return TestInterface::C3;
}
public function testReadInterfaceConstant4()
{
return TestInterface::C4;
}
public function testReadInterfaceConstant5()
{
return TestInterface::C5;
}
public function testReadInterfaceConstant6()
{
return TestInterface::C6;
}
public function testReadInheritanceFromInterfaceConstant1()
{
return self::C1;
}
public function testReadInheritanceFromInterfaceConstant2()
{
return self::C2;
}
public function testReadInheritanceFromInterfaceConstant3()
{
return self::C3;
}
public function testReadInheritanceFromInterfaceConstant4()
{
return self::C4;
}
public function testReadInheritanceFromInterfaceConstant5()
{
return self::C5;
}
public function testReadInheritanceFromInterfaceConstant6()
{
return self::C6;
}
}