Passed
Push — master ( f58add...4aa999 )
by Luis
54s queued 13s
created

StatisticsInput   A

Complexity

Total Complexity 6

Size/Duplication

Total Lines 38
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 14
c 1
b 0
f 0
dl 0
loc 38
rs 10
wmc 6

4 Methods

Rating   Name   Duplication   Size   Complexity  
A outputFile() 0 3 1
A __construct() 0 5 2
A setOutputFile() 0 7 1
A codeFinder() 0 4 2
1
<?php declare(strict_types=1);
2
/**
3
 * PHP version 7.4
4
 *
5
 * This source file is subject to the license that is bundled with this package in the file LICENSE.
6
 */
7
8
namespace PhUml\Console\Commands;
9
10
use PhUml\Parser\CodebaseDirectory;
11
use PhUml\Parser\CodeFinder;
12
use PhUml\Parser\SourceCodeFinder;
13
use Webmozart\Assert\Assert;
0 ignored issues
show
Bug introduced by
The type Webmozart\Assert\Assert was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
14
15
final class StatisticsInput
16
{
17
    private string $directory;
18
19
    private string $outputFile;
20
21
    private bool $recursive;
22
23
    /**
24
     * @param string[] $arguments
25
     * @param string[] $options
26
     */
27
    public function __construct(array $arguments, array $options)
28
    {
29
        $this->directory = $arguments['directory'] ?? '';
30
        $this->recursive = isset($options['recursive']) && (bool) $options['recursive'];
31
        $this->setOutputFile($arguments);
32
    }
33
34
    public function outputFile(): string
35
    {
36
        return $this->outputFile;
37
    }
38
39
    /** @param string[] $arguments */
40
    private function setOutputFile(array $arguments): void
41
    {
42
        Assert::stringNotEmpty(
43
            $arguments['output'] ?? '',
44
            'The output file cannot be empty'
45
        );
46
        $this->outputFile = $arguments['output'];
47
    }
48
49
    public function codeFinder(): CodeFinder
50
    {
51
        $directory = new CodebaseDirectory($this->directory);
52
        return $this->recursive ? SourceCodeFinder::recursive($directory) : SourceCodeFinder::nonRecursive($directory);
53
    }
54
}
55