Completed
Push — master ( 4fe608...5ceeaf )
by Jindun
12s
created

AbstractCleanupJob   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 3
dl 0
loc 6
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
3
4
namespace TheAentMachine\AentGitLabCI\GitLabCI\Job;
5
6
abstract class AbstractCleanupJob extends AbstractJob
7
{
8
    public function __construct(string $identifier)
9
    {
10
        $this->jobName = "cleanup_$identifier";
11
        $this->stage = 'cleanup';
12
    }
13
}
14