forked from Luracast/Restler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Type.php
187 lines (171 loc) · 3.2 KB
/
Type.php
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
<?php
class Type
{
/**
* Email validation
*
* @param string $email {@from body}{@type email}
*/
function postEmail($email)
{
return $email;
}
/**
* Date validation
*
* @param string $date {@from body}{@type date}
*/
function postDate($date)
{
return $date;
}
/**
* Array of dates
*
* @param array $dates Dates array{@from body}{@type date}
*/
function postDates(array $dates)
{
return $dates;
}
/**
* DateTime validation
*
* @param string $datetime {@from body}{@type datetime}
*/
function postDatetime($datetime)
{
return $datetime;
}
/**
* time validation
*
* @param string $time {@from body}{@type time}
*/
function postTime($time)
{
return $time;
}
/**
* time validation in 12 hour format
*
* @param string $time {@from body}{@type time12}
*/
function postTime12($time12)
{
return $time12;
}
/**
* Timestamp validation
*
* @param string $timestamp {@from body}{@type timestamp}
*/
function postTimestamp($timestamp)
{
return $timestamp;
}
/**
* Integer validation
*
* @param array $integers {@type int}
*/
function postIntegers(array $integers)
{
return $integers;
}
/**
* Array of numbers
*
* @param array $numbers {@type float}
*/
function postNumbers(array $numbers)
{
return $numbers;
}
/**
* Array of time strings
*
* @param array $timestamp {@from body}{@type time}
*/
function postTimes(array $timestamps)
{
return $timestamps;
}
/**
* Array of timestamps
*
* @param array $timestamp {@from body}{@type timestamp}
*/
function postTimestamps(array $timestamps)
{
return $timestamps;
}
/**
* Custom class parameter
*
* @param Author $author
*
* @return Author
*/
function postAuthor(Author $author)
{
return $author;
}
/**
* Array of authors
*
* @param array $authors {@type Author}
*
* @return mixed
*/
function postAuthors(array $authors)
{
return $authors;
}
/**
* An associative array
*
* @param array $object {@type associative}
*
* @return array
*/
function postObject(array $object)
{
return $object;
}
/**
* An indexed array
*
* @param array $array {@type indexed}
*
* @return array
*/
function postArray(array $array)
{
return $array;
}
/**
* An array indexed or associative
*
* @param array $array
*
* @return array
*/
function postArrayOrObject(array $array)
{
return $array;
}
}
class Author
{
/**
* @var string {@from body} {@min 3}{@max 100}
* name of the Author {@required true}
*/
public $name = 'Name';
/**
* @var string {@type email} {@from body} {@required false}
* email id of the Author
*/
public $email = '[email protected]';
}