GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

MakeModelCommand   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 93
Duplicated Lines 98.92 %

Coupling/Cohesion

Components 1
Dependencies 1

Importance

Changes 5
Bugs 0 Features 0
Metric Value
wmc 2
c 5
b 0
f 0
lcom 1
cbo 1
dl 92
loc 93
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A formatContent() 18 18 1
A resolveByPath() 7 7 1

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 Caffeinated\Modules\Console\Generators;
4
5 View Code Duplication
class MakeModelCommand extends MakeCommand
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
     * The name and signature of the console command.
9
     *
10
     * @var string
11
     */
12
    protected $signature = 'make:module:model
13
    	{slug : The slug of the module.}
14
    	{name : The name of the model class.}';
15
16
    /**
17
     * The console command description.
18
     *
19
     * @var string
20
     */
21
    protected $description = 'Create a new module model class';
22
23
    /**
24
     * String to store the command type.
25
     *
26
     * @var string
27
     */
28
    protected $type = 'Model';
29
30
    /**
31
     * Module folders to be created.
32
     *
33
     * @var array
34
     */
35
    protected $listFolders = [
36
        'Models/',
37
    ];
38
39
    /**
40
     * Module files to be created.
41
     *
42
     * @var array
43
     */
44
    protected $listFiles = [
45
        '{{filename}}.php',
46
    ];
47
48
    /**
49
     * Module stubs used to populate defined files.
50
     *
51
     * @var array
52
     */
53
    protected $listStubs = [
54
        'default' => [
55
            'model.stub',
56
        ],
57
    ];
58
59
    /**
60
     * Resolve Container after getting file path.
61
     *
62
     * @param string $filePath
63
     *
64
     * @return array
65
     */
66
    protected function resolveByPath($filePath)
67
    {
68
        $this->container['filename']  = $this->makeFileName($filePath);
69
        $this->container['namespace'] = $this->getNamespace($filePath);
70
        $this->container['path']      = $this->getBaseNamespace();
71
        $this->container['classname'] = basename($filePath);
72
    }
73
74
    /**
75
     * Replace placeholder text with correct values.
76
     *
77
     * @return string
78
     */
79
    protected function formatContent($content)
80
    {
81
        return str_replace(
82
            [
83
                '{{filename}}',
84
                '{{path}}',
85
                '{{namespace}}',
86
                '{{classname}}',
87
            ],
88
            [
89
                $this->container['filename'],
90
                $this->container['path'],
91
                $this->container['namespace'],
92
                $this->container['classname'],
93
            ],
94
            $content
95
        );
96
    }
97
}
98