Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
76 | 1 | public function toArray() |
|
77 | { |
||
78 | 1 | $labels = array(); |
|
79 | |||
80 | 1 | $labels['pipelines.prefix'] = $this->prefix; |
|
81 | 1 | $labels['pipelines.role'] = $this->role; |
|
82 | 1 | $labels['pipelines.project.name'] = $this->project; |
|
83 | 1 | $labels['pipelines.project.path'] = $this->projectDirectory; |
|
84 | |||
85 | 1 | return $labels; |
|
86 | } |
||
124 |