File "PhpBinary.php"

Full Path: /var/www/drive/laravel/horizon/src/PhpBinary.php
File size: 294 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Laravel\Horizon;

class PhpBinary
{
    /**
     * Get the path to the PHP executable.
     *
     * @return string
     */
    public static function path()
    {
        $escape = '\\' === DIRECTORY_SEPARATOR ? '"' : '\'';

        return $escape.PHP_BINARY.$escape;
    }
}