Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
mpociot authored and github-actions[bot] committed Jul 27, 2023
1 parent 7246559 commit 9fc0957
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Concerns/LocatesPhpBinary.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ protected function binaryPackageDirectory(): string
*/
public function phpBinaryPath(): string
{
return $this->binaryPackageDirectory().'bin/'.match(PHP_OS_FAMILY) {
return $this->binaryPackageDirectory().'bin/'.match (PHP_OS_FAMILY) {
'Windows' => 'win',
'Darwin' => 'mac',
'Linux' => 'linux',
};
;

}
}

0 comments on commit 9fc0957

Please sign in to comment.