Failed Conditions
Branch master (30bd5c)
by Alexander
02:28
created

ReflectionType   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 30
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 1
c 1
b 0
f 0
dl 0
loc 30
ccs 0
cts 5
cp 0
rs 10
wmc 3

3 Methods

Rating   Name   Duplication   Size   Complexity  
A __toString() 0 2 1
A isBuiltin() 0 2 1
A allowsNull() 0 2 1
1
<?php
2
3
if ( !class_exists('ReflectionType') ) {
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()
33
		{
34
35
		}
36
37
	}
38
}
39