TestPage
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Importance

Changes 3
Bugs 0 Features 0
Metric Value
eloc 3
c 3
b 0
f 0
dl 0
loc 5
wmc 0
1
<?php
2
3
namespace Dynamic\FlexSlider\Test;
4
5
use Dynamic\FlexSlider\ORM\FlexSlider;
6
use SilverStripe\Dev\TestOnly;
7
8
/**
9
 * Class TestPage
10
 * @package Dynamic\FlexSlider\Tests
11
 */
12
class TestPage extends \Page implements TestOnly
13
{
14
    private static $slide_tab_title = '';
0 ignored issues
show
introduced by
The private property $slide_tab_title is not used, and could be removed.
Loading history...
15
16
    private static $table_name = 'FlexsliderTestPage';
0 ignored issues
show
introduced by
The private property $table_name is not used, and could be removed.
Loading history...
17
}
18