Completed
Push — master ( 2e21dc...b663e1 )
by Bill
04:37 queued 02:23
created

PhpFileFinder   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 28
Duplicated Lines 100 %

Coupling/Cohesion

Components 1
Dependencies 0

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A find() 13 13 2

How to fix   Duplicated Code   

Duplicated Code

Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.

Common duplication problems, and corresponding solutions are:

1
<?php
2
3
namespace Bmitch\Envsync\Finders;
4
5 View Code Duplication
class PhpFileFinder
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...
6
{
7
8
    /**
9
     * Regex pattern to use to find environment variables.
10
     * @var  string $contents Regular Expression.
11
     */
12
    public static $pattern = "/env\(['\"]([A-Za-z_]{1,})/";
13
14
    /**
15
     * Finds the environment variables within the $file.
16
     * @param  string $file Path and filename.
17
     * @return array
18
     */
19
    public function find($file)
20
    {
21
        $contents = file_get_contents($file);
22
23
        $envs = [];
24
25
        preg_match_all(self::$pattern, $contents, $matches);
26
        if (isset($matches[1])) {
27
            $envs = $matches[1];
28
        }
29
30
        return $envs;
31
    }
32
}
33