Completed
Push — master ( 514dbf...ba76d3 )
by Wim
11s
created

BaseClass_TestHelperPHPCompatibility   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 2
lcom 0
cbo 1
dl 0
loc 4
rs 10
c 0
b 0
f 0
1
<?php
2
/**
3
 * Test Helper file.
4
 *
5
 * @package PHPCompatibility
6
 */
7
8
if (class_exists('PHPCompatibility_Sniff', true) === false) {
9
    require_once dirname(dirname(dirname(__FILE__))) . '/Sniff.php';
10
}
11
12
/**
13
 * Helper class to facilitate testing of the methods within the abstract PHPCompatibility_Sniff class.
14
 *
15
 * @uses BaseSniffTest
16
 * @package PHPCompatibility
17
 */
18
class BaseClass_TestHelperPHPCompatibility extends PHPCompatibility_Sniff {
19
	public function register() {}
20
	public function process(PHP_CodeSniffer_File $phpcsFile, $stackPtr) {}
21
}
22