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

DocumentationCheck   A

Complexity

Total Complexity 4

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 16
rs 10
c 0
b 0
f 0
wmc 4

3 Methods

Rating   Name   Duplication   Size   Complexity  
A run() 0 4 2
A getKey() 0 3 1
A getDescription() 0 3 1
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