| Total Complexity | 3 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 6 | abstract class AbstractBuildJob extends AbstractJob |
||
| 7 | { |
||
| 8 | /** @var bool */ |
||
| 9 | protected $isSingleBranch; |
||
| 10 | /** @var string */ |
||
| 11 | protected $dockerImageName; |
||
| 12 | |||
| 13 | public function __construct(string $envName, string $serviceName) |
||
| 17 | } |
||
| 18 | |||
| 19 | public function isSingleBranch(): bool |
||
| 20 | { |
||
| 21 | return $this->isSingleBranch; |
||
| 22 | } |
||
| 23 | |||
| 24 | public function getDockerImageName(): string |
||
| 27 | } |
||
| 28 | } |
||
| 29 |