/opt/cpanel/ea-wappspector/vendor/rector/rector/vendor/ondram/ci-detector/src/Ci
NameSizeModeActions
AbstractCi.php8830644editdlrm
AppVeyor.php18850644editdlrm
AwsCodeBuild.php15940644editdlrm
AzurePipelines.php17670644editdlrm
Bamboo.php17200644editdlrm
BitbucketPipelines.php16290644editdlrm
Buddy.php16880644editdlrm
CiInterface.php23980644editdlrm
Circle.php15040644editdlrm
Codeship.php14040644editdlrm
Continuousphp.php14800644editdlrm
Drone.php14440644editdlrm
GitHubActions.php19020644editdlrm
GitLab.php20760644editdlrm
Jenkins.php13350644editdlrm
SourceHut.php13690644editdlrm
TeamCity.php13220644editdlrm
Travis.php17960644editdlrm
Wercker.php14820644editdlrm
Edit: /opt/cpanel/ea-wappspector/vendor/rector/rector/vendor/ondram/ci-detector/src/Ci/CiInterface.php (2398B)
*/ public function describe() : array; /** * Get number of this concrete build. * * Build number is usually human-readable increasing number sequence. It should increase each time this particular * job was run on the CI server. Most CIs use simple numbering sequence like: 1, 2, 3... * However, some CIs do not provide this simple human-readable value and rather use for example alphanumeric hash. */ public function getBuildNumber() : string; /** * Get URL where this build can be found and viewed. */ public function getBuildUrl() : string; /** * Get hash of the git (or other VCS) commit being built. */ public function getCommit() : string; /** * Get name of the git (or other VCS) branch which is being built. * * Use `getTargetBranch()` to get name of the branch where this branch is targeted. */ public function getBranch() : string; /** * Get name of the target branch of a pull request. */ public function getTargetBranch() : string; /** * Get name of the git (or other VCS) repository which is being built. * * This is usually in form "user/repository", for example "OndraM/ci-detector". */ public function getRepositoryName() : string; /** * Get URL where the repository which is being built can be found. * * This is either HTTP URL like "https://github.com/OndraM/ci-detector" * but may be a git ssh url like "ssh://git@bitbucket.org/OndraM/ci-detector". */ public function getRepositoryUrl() : string; /** * Returned TrinaryLogic object's value will be true if the current build is from a pull/merge request, * false if it not, and maybe if we can't determine it. */ public function isPullRequest() : TrinaryLogic; }