File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -526,14 +526,14 @@ absolute path of the executable PHP binary available on your server::
526
526
$phpBinaryPath = $phpBinaryFinder->find();
527
527
// $phpBinaryPath = '/usr/local/bin/php' (the result will be different on your computer)
528
528
529
- If you want to find the PHP binary by a specific name, you can use the methods
529
+ If you want to find the PHP binary with a specific name, you can use the methods
530
530
:method: `Symfony\\ Component\\ Process\\ PhpExecutableFinder::findByName ` and
531
531
:method: `Symfony\\ Component\\ Process\\ PhpExecutableFinder::tryNames `.
532
532
533
533
$phpBinaryPath1 = $phpBinaryFinder->findByName('php-cli');
534
534
$phpBinaryPath2 = $phpBinaryFinder->tryNames(['php-cli', 'php']);
535
535
536
- If you want to find the PHP binary by a specific version, you can use the methods
536
+ If you want to find the PHP binary with a specific version, you can use the methods
537
537
:method: `Symfony\\ Component\\ Process\\ PhpExecutableFinder::findByVersion ` and
538
538
:method: `Symfony\\ Component\\ Process\\ PhpExecutableFinder::tryVersions `.
539
539
You can’t perform that action at this time.
0 commit comments