Completed
Push — master ( 6dc7d8...407c40 )
by Karsten
15:45
created

GanttTest::getFormats()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
3
namespace SRF\Tests\Gantt;
4
5
use SMW\Test\QueryPrinterRegistryTestCase;
6
7
class GanttTest extends QueryPrinterRegistryTestCase{
8
9
	/**
10
	 * @see QueryPrinterRegistryTestCase::getFormats
11
	 *
12
	 * @since 1.8
13
	 *
14
	 * @return array
15
	 */
16
	public function getFormats() {
17
		return [ 'gantt' ];
18
	}
19
20
	/**
21
	 * @see QueryPrinterRegistryTestCase::getClass
22
	 *
23
	 * @since 1.8
24
	 *
25
	 * @return string
26
	 */
27
	public function getClass() {
28
		return '\SRF\Gantt\GanttPrinter';
29
	}
30
}