-
Notifications
You must be signed in to change notification settings - Fork 158
/
Copy pathConstantsPHPDocFormattingUnitTest.2.inc
86 lines (70 loc) · 1.35 KB
/
ConstantsPHPDocFormattingUnitTest.2.inc
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<?php
/**
* Nesting separator.
*/
define("NESTING_SEPARATOR", '->0');
/** */
define('NUMBER_ONE', 1);
/**
* @deprecated
*/
define('A', 65);
/**
* @deprecated It is a lie
*/
define('THERE IS', 'cake');
/**
* @deprecated
* @see
*/
define('C', 67);
/**
* @deprecated No reference specified
* @see
*/
define('D', 68);
class Profiler
{
/**
* Nesting separator.
*/
const NESTING_SEPARATOR = '->';
/**
*
*/
const NUMBER_TWO = 2;
/**
* @deprecated
*/
const a = 97;
/**
* @deprecated Why not
*/
const YES = false;
/**
* @deprecated
* @see
*/
const c = 99;
/**
* @deprecated No reference specified
* @see
*/
const d = 100;
/**
* @deprecated This constant will be removed in version 1.0.0 without replacement
*/
const KEYWORD_PHRASE = false;
/**
* @deprecated This constant will be removed in version 123.45.6789 without replacement
*/
const KEYWORD_PHRASE_LONG_VERSION = false;
/**
* @deprecated It's awesome - This constant will be removed in version 1.0.0 without replacement
*/
const WITH_KEYWORD_PHRASE = false;
/**
* @deprecated It's awesome - This constant will be removed in version 123.45.6789 without replacement
*/
const WITH_KEYWORD_PHRASE_LONG_VERSION = false;
}