Php   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
dl 0
loc 16
rs 10
c 0
b 0
f 0
wmc 1
lcom 0
cbo 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A getAnalysisToolsClasses() 0 8 1
1
<?php
2
namespace Finder\Logic\Language;
3
4
use Finder\Logic\Output\AbstractOutput;
5
use Finder\Logic\Output\Filter\OutputFilterInterface;
6
use Finder\Logic\Output\TriggerableInterface;
7
8
/**
9
 * Run all script analysers and outputs their result.
10
 */
11
class Php
12
{
13
    /**
14
     * List of PHP analys integration classes.
15
     *
16
     * @return string[] array of class names.
17
     */
18
    public static function getAnalysisToolsClasses()
19
    {
20
        return [
21
            'Finder\Logic\Tools\CodeSniffer',
22
            'Finder\Logic\Tools\CopyPasteDetector',
23
            'Finder\Logic\Tools\MessDetector',
24
        ];
25
    }
26
}