public function Runtime::getVendorUrl in Zircon Profile 8.0
Same name and namespace in other branches
- 8 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\EnvironmentCode
public function getVendorUrl() {
if ($this
->isHHVM()) {
return 'http://hhvm.com/';
}
else {
return 'http://php.net/';
}
}