Passed
Push — master ( 60ff9c...f71034 )
by Robbie
01:42
created

DocumentationCheck::run()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 2
eloc 2
nc 2
nop 0
dl 0
loc 4
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace SilverStripe\ModuleRatings\Check;
4
5
use SilverStripe\ModuleRatings\Check;
6
7
class DocumentationCheck extends Check
8
{
9
    public function getKey()
10
    {
11
        return 'has_documentation';
12
    }
13
14
    public function getDescription()
15
    {
16
        return 'Has documentation';
17
    }
18
19
    public function run()
20
    {
21
        if (file_exists($this->getSuite()->getModuleRoot() . '/docs')) {
22
            $this->setSuccessful(true);
23
        }
24
    }
25
}
26