Completed
Push — master ( 8eec5e...3d8421 )
by Dave
30s queued 12s
created

PhpMagicNumberDetectorIdentifier::getToolCommand()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 3
rs 10
1
<?php
2
3
/**
4
 * Static Analysis Results Baseliner (sarb).
5
 *
6
 * (c) Dave Liddament
7
 *
8
 * For the full copyright and licence information please view the LICENSE file distributed with this source code.
9
 */
10
11
declare(strict_types=1);
12
13
namespace DaveLiddament\StaticAnalysisResultsBaseliner\Plugins\ResultsParsers\PhpMagicNumberDetectorResultsParser;
14
15
use DaveLiddament\StaticAnalysisResultsBaseliner\Domain\ResultsParser\Identifier;
16
17
class PhpMagicNumberDetectorIdentifier implements Identifier
18
{
19
    public function getCode(): string
20
    {
21
        return 'phpmnd';
22
    }
23
24
    public function getDescription(): string
25
    {
26
        return 'PHP Magic Number Detector';
27
    }
28
29
    public function getToolCommand(): string
30
    {
31
        return 'phpmnd <files|directories to scan>';
32
    }
33
}
34