Skip to content

Commit 6f51d00

Browse files
committed
Formatting
1 parent 1439045 commit 6f51d00

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Commands/Concerns/InstallsRoadRunnerDependencies.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -130,14 +130,14 @@ protected function ensureRoadRunnerBinaryMeetsRequirements($roadRunnerBinary)
130130

131131
if (! Str::startsWith($version, 'rr version 2.')) {
132132
return $this->warn(
133-
'Unable to get the RoadRunner binary version. Please report this issue: https://github.com/laravel/octane/issues/new.'
133+
'Unable to determine the current RoadRunner binary version. Please report this issue: https://github.com/laravel/octane/issues/new.'
134134
);
135135
}
136136

137137
$version = explode(' ', $version)[2];
138138

139139
if (version_compare($version, $this->requiredVersion, '<')) {
140-
$this->warn("The downloaded RoadRunner binary version (<fg=red>$version</>) may be incompatible with Octane.");
140+
$this->warn("Your RoadRunner binary version (<fg=red>$version</>) may be incompatible with Octane.");
141141

142142
if ($this->confirm('Should Octane download the latest RoadRunner binary version for your operating system?', true)) {
143143
rename($roadRunnerBinary, "$roadRunnerBinary.backup");
@@ -149,7 +149,7 @@ protected function ensureRoadRunnerBinaryMeetsRequirements($roadRunnerBinary)
149149

150150
rename("$roadRunnerBinary.backup", $roadRunnerBinary);
151151

152-
return $this->warn('Unable to download RoadRunner binary. The error has been reported to the exception logger.');
152+
return $this->warn('Unable to download RoadRunner binary. The HTTP request exception has been logged.');
153153
}
154154

155155
unlink("$roadRunnerBinary.backup");
@@ -158,7 +158,7 @@ protected function ensureRoadRunnerBinaryMeetsRequirements($roadRunnerBinary)
158158
}
159159

160160
/**
161-
* Downloads the latest version of the RoadRunner binary.
161+
* Download the latest version of the RoadRunner binary.
162162
*
163163
* @return void
164164
*/

0 commit comments

Comments
 (0)