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

DocumentationCheck::getKey()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 3
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