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

ReflectionType::isBuiltin()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 0
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 2
ccs 0
cts 1
cp 0
crap 2
rs 10
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