You are here

protected function Provision_PlatformGit::referenceIsACommit in Aegir Deploy 7.3

1 call to Provision_PlatformGit::referenceIsACommit()
Provision_PlatformGit::gitCheckout in modules/platform_git/drush/Provision/PlatformGit.php

File

modules/platform_git/drush/Provision/PlatformGit.php, line 86
The Provision_PlatformGit class.

Class

Provision_PlatformGit
@file The Provision_PlatformGit class.

Code

protected function referenceIsACommit() {
  return $this->reference && !$this
    ->referenceIsABranch() && !$this
    ->referenceIsATag();
}