PHP 8.3.31
Preview: PhpExecutableFinder.php Size: 600 B
/home/getspomw/royalsquad.us/vendor/laravel/framework/src/Illuminate/Support/Process/PhpExecutableFinder.php

<?php

namespace Illuminate\Support\Process;

use Symfony\Component\Process\ExecutableFinder;
use Symfony\Component\Process\PhpExecutableFinder as SymfonyPhpExecutableFinder;

class PhpExecutableFinder extends SymfonyPhpExecutableFinder
{
    /**
     * Finds The PHP executable.
     */
    #[\Override]
    public function find(bool $includeArgs = true): string|false
    {
        if ($herdPath = getenv('HERD_HOME')) {
            return (new ExecutableFinder)->find('php', false, [implode(DIRECTORY_SEPARATOR, [$herdPath, 'bin'])]);
        }

        return parent::find($includeArgs);
    }
}

Directory Contents

Dirs: 0 × Files: 1

Name Size Perms Modified Actions
600 B lrw-rw-rw- 2025-09-17 06:53:02
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).