AddOwnerCommand   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 67
Duplicated Lines 100 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 8 8 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
/*
4
 * This file is part of Gitamin.
5
 *
6
 * Copyright (C) 2015-2016 The Gitamin Team
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace Gitamin\Commands\Owner;
13
14 View Code Duplication
final class AddOwnerCommand
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...
15
{
16
    /**
17
     * The project owner name.
18
     *
19
     * @var string
20
     */
21
    public $name;
22
23
    /**
24
     * The project owner path.
25
     *
26
     * @var string
27
     */
28
    public $path;
29
30
    /**
31
     * The project owner user_id.
32
     *
33
     * @var int
34
     */
35
    public $user_id;
36
37
    /**
38
     * The project owner description.
39
     *
40
     * @var text
41
     */
42
    public $description;
43
44
    /**
45
     * The project namespace type.
46
     *
47
     * @var string
48
     */
49
    public $type;
50
51
    /**
52
     * The validation rules.
53
     *
54
     * @var string[]
55
     */
56
    public $rules = [
57
        'name' => 'required|string',
58
        'path' => 'required|string',
59
        'user_id' => 'int',
60
        'type' => 'string',
61
    ];
62
63
    /**
64
     * Create a add project team command instance.
65
     *
66
     * @param string $name
67
     * @param string $path
68
     * @param int    $user_id
69
     * @param string $description
70
     * @param string $type
71
     */
72
    public function __construct($name, $path, $user_id, $description, $type)
73
    {
74
        $this->name = $name;
75
        $this->path = $path;
76
        $this->user_id = $user_id;
77
        $this->description = $description;
0 ignored issues
show
Documentation Bug introduced by
It seems like $description of type string is incompatible with the declared type object<Gitamin\Commands\Owner\text> of property $description.

Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.

Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..

Loading history...
78
        $this->type = $type;
79
    }
80
}
81