for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace TheAentMachine\AentGitLabCI\GitLabCI\Job;
abstract class AbstractCleanupJob extends AbstractJob
{
/**
* AbstractCleanupJob constructor.
* @param string $identifier
*/
public function __construct(string $identifier)
$this->jobName = "cleanup_$identifier";
$this->stage = 'cleanup';
}