Skip to content

Commit c8ae72d

Browse files
authored
Revert "PHP 8.3 (#750)" (#751)
This reverts commit 16ad380.
1 parent 16ad380 commit c8ae72d

File tree

6 files changed

+12
-4
lines changed

6 files changed

+12
-4
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: true
1818
matrix:
19-
php: [8.1, 8.2, 8.3]
19+
php: [8.1, 8.2]
2020
laravel: [10]
2121
driver: [swoole, openswoole]
2222

src/Commands/StartRoadRunnerCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
class StartRoadRunnerCommand extends Command implements SignalableCommandInterface
1414
{
1515
use Concerns\InstallsRoadRunnerDependencies,
16-
Concerns\InteractsWithEnvironmentVariables,
17-
Concerns\InteractsWithServers;
16+
Concerns\InteractsWithServers,
17+
Concerns\InteractsWithEnvironmentVariables;
1818

1919
/**
2020
* The command's signature.

src/Commands/StartSwooleCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
class StartSwooleCommand extends Command implements SignalableCommandInterface
1414
{
15-
use Concerns\InteractsWithEnvironmentVariables, Concerns\InteractsWithServers;
15+
use Concerns\InteractsWithServers, Concerns\InteractsWithEnvironmentVariables;
1616

1717
/**
1818
* The command's signature.

src/RoadRunner/Concerns/FindsRoadRunnerBinary.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ trait FindsRoadRunnerBinary
99
{
1010
/**
1111
* Find the RoadRunner binary used by the application.
12+
*
13+
* @return string
1214
*/
1315
protected function findRoadRunnerBinary(): ?string
1416
{

src/SymfonyProcessFactory.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ class SymfonyProcessFactory
99
/**
1010
* Create a new Symfony process instance.
1111
*
12+
* @param string $cwd
13+
* @param array $env
1214
* @param mixed|null $input
1315
* @return \Symfony\Component\Process\Process
1416
*/

src/Worker.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,8 @@ public function boot(array $initialInstances = []): void
5959

6060
/**
6161
* Handle an incoming request and send the response to the client.
62+
*
63+
* @param \Laravel\Octane\RequestContext $context
6264
*/
6365
public function handle(Request $request, RequestContext $context): void
6466
{
@@ -179,6 +181,8 @@ public function handleTick(): void
179181

180182
/**
181183
* Handle an uncaught exception from the worker.
184+
*
185+
* @param \Laravel\Octane\RequestContext $context
182186
*/
183187
protected function handleWorkerError(
184188
Throwable $e,

0 commit comments

Comments
 (0)