Total Complexity | 3 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
4 | class ReflectionType |
||
5 | { |
||
6 | |||
7 | /** |
||
8 | * Checks if null is allowed. |
||
9 | * |
||
10 | * @return boolean |
||
11 | */ |
||
12 | public function allowsNull() |
||
13 | { |
||
14 | |||
15 | } |
||
16 | |||
17 | /** |
||
18 | * Checks if it is a built-in type. |
||
19 | * |
||
20 | * @return boolean |
||
21 | */ |
||
22 | public function isBuiltin() |
||
23 | { |
||
24 | |||
25 | } |
||
26 | |||
27 | /** |
||
28 | * To string. |
||
29 | * |
||
30 | * @return string |
||
31 | */ |
||
32 | public function __toString() |
||
34 | |||
35 | } |
||
36 | |||
39 |