You are here

public function Runtime::getVendorUrl in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/sebastian/environment/src/Runtime.php \SebastianBergmann\Environment\Runtime::getVendorUrl()

Return value

string

File

vendor/sebastian/environment/src/Runtime.php, line 121

Class

Runtime
Utility class for HHVM/PHP environment handling.

Namespace

SebastianBergmann\Environment

Code

public function getVendorUrl() {
  if ($this
    ->isHHVM()) {
    return 'http://hhvm.com/';
  }
  else {
    return 'http://php.net/';
  }
}