Eloquent\Phony\Reflection\FeatureDetector::runtime PHP 메소드

runtime() 공개 메소드

Determine the current PHP runtime.
public runtime ( ) : string
리턴 string The runtime.
    public function runtime()
    {
        if (!$this->runtime) {
            if (false === strpos(phpversion(), 'hhvm')) {
                $this->runtime = 'php';
            } else {
                $this->runtime = 'hhvm';
                // @codeCoverageIgnore
            }
        }
        return $this->runtime;
    }