Completed
Push — move/autoloader-package-tests ( 45c0cd )
by Marin
08:25
created

className_ABC   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
dl 0
loc 11
rs 10
c 0
b 0
f 0
wmc 1
lcom 0
cbo 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A return_true() 0 3 1
1
<?php
2
/**
3
 * This is a very much a dummy class that is used for a test.
4
 * To see if we are able to load it via the autoloader.
5
 *
6
 * @package jetpack
7
 */
8
9
namespace Jetpack\TestCase_ABC;
10
11
/**
12
 * Class className_ABC.
13
 *
14
 * @package Jetpack\TestCase_ABC
15
 */
16
class className_ABC {
17
18
	/**
19
	 * Returns True.
20
	 *
21
	 * @return bool
22
	 */
23
	function return_true() {
24
		return true;
25
	}
26
}