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)
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.