Skip to content

Commit

Permalink
Merge pull request #3 from grasmash/patch-1
Browse files Browse the repository at this point in the history
Add missing AH* variables.
  • Loading branch information
danepowell authored Jun 16, 2020
2 parents b9be514 + 6897bb8 commit 857a31d
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions src/AcquiaDrupalEnvironmentDetector.php
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,27 @@ public static function getAhEnv() {
return getenv('AH_SITE_ENVIRONMENT');
}

/**
* Get AH realm.
*/
public static function getAhRealm() {
return getenv('AH_REALM');
}

/**
* Get AH non production.
*/
public static function getAhNonProduction() {
return getenv('AH_NON_PRODUCTION');
}

/**
* Get AH application UUID.
*/
public static function getAhApplicationUuid() {
return getenv('AH_APPLICATION_UUID');
}

/**
* Get AH files.
*/
Expand Down

0 comments on commit 857a31d

Please sign in to comment.