You are here

public function Runtime::getNameWithVersion in Zircon Profile 8

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

Return value

string

File

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

Class

Runtime
Utility class for HHVM/PHP environment handling.

Namespace

SebastianBergmann\Environment

Code

public function getNameWithVersion() {
  return $this
    ->getName() . ' ' . $this
    ->getVersion();
}