Completed
Push — master ( 4ee28c...27c466 )
by Marcel
34:36 queued 25:34
created

ExampleEnvironmentVariablesAreSet::name()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 4
Ratio 100 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
dl 4
loc 4
ccs 0
cts 2
cp 0
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 1
crap 2
1
<?php
2
3
namespace BeyondCode\SelfDiagnosis\Checks;
4
5
use Dotenv\Dotenv;
6
use Illuminate\Support\Collection;
7
8 View Code Duplication
class ExampleEnvironmentVariablesAreSet implements Check
0 ignored issues
show
Duplication introduced by
This class seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
9
{
10
    /** @var Collection */
11
    private $envVariables;
12
13
    /**
14
     * The name of the check.
15
     *
16
     * @param array $config
17
     * @return string
18
     */
19
    public function name(array $config): string
20
    {
21
        return trans('self-diagnosis::checks.example_environment_variables_are_set.name');
22
    }
23
24
    /**
25
     * Perform the actual verification of this check.
26
     *
27
     * @param array $config
28
     * @return bool
29
     */
30 4
    public function check(array $config): bool
31
    {
32 4
        if (interface_exists(\Dotenv\Environment\FactoryInterface::class)) {
33 4
            $examples = Dotenv::create(base_path(), '.env.example');
34 4
            $actual = Dotenv::create(base_path(), '.env');
35
        } else {
36
            $examples = new Dotenv(base_path(), '.env.example');
0 ignored issues
show
Documentation introduced by
base_path() is of type string, but the function expects a object<Dotenv\Loader>.

It seems like the type of the argument is not accepted by the function/method which you are calling.

In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.

We suggest to add an explicit type cast like in the following example:

function acceptsInteger($int) { }

$x = '123'; // string "123"

// Instead of
acceptsInteger($x);

// we recommend to use
acceptsInteger((integer) $x);
Loading history...
Unused Code introduced by
The call to Dotenv::__construct() has too many arguments starting with '.env.example'.

This check compares calls to functions or methods with their respective definitions. If the call has more arguments than are defined, it raises an issue.

If a function is defined several times with a different number of parameters, the check may pick up the wrong definition and report false positives. One codebase where this has been known to happen is Wordpress.

In this case you can add the @ignore PhpDoc annotation to the duplicate definition and it will be ignored.

Loading history...
37
            $actual = new Dotenv(base_path(), '.env');
0 ignored issues
show
Documentation introduced by
base_path() is of type string, but the function expects a object<Dotenv\Loader>.

It seems like the type of the argument is not accepted by the function/method which you are calling.

In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.

We suggest to add an explicit type cast like in the following example:

function acceptsInteger($int) { }

$x = '123'; // string "123"

// Instead of
acceptsInteger($x);

// we recommend to use
acceptsInteger((integer) $x);
Loading history...
Unused Code introduced by
The call to Dotenv::__construct() has too many arguments starting with '.env'.

This check compares calls to functions or methods with their respective definitions. If the call has more arguments than are defined, it raises an issue.

If a function is defined several times with a different number of parameters, the check may pick up the wrong definition and report false positives. One codebase where this has been known to happen is Wordpress.

In this case you can add the @ignore PhpDoc annotation to the duplicate definition and it will be ignored.

Loading history...
38
        }
39
40 4
        $examples->safeLoad();
41 4
        $actual->safeLoad();
42
43 4
        $this->envVariables = Collection::make($examples->getEnvironmentVariableNames())
44 4
            ->diff($actual->getEnvironmentVariableNames());
45
46 4
        return $this->envVariables->isEmpty();
47
    }
48
49
    /**
50
     * The error message to display in case the check does not pass.
51
     *
52
     * @param array $config
53
     * @return string
54
     */
55 4
    public function message(array $config): string
56
    {
57 4
        return trans('self-diagnosis::checks.example_environment_variables_are_set.message', [
58 4
            'variables' => $this->envVariables->implode(PHP_EOL),
59
        ]);
60
    }
61
}
62