Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [8.1, 8.2]
php: [8.1, 8.2, 8.3]
laravel: [10]
driver: [swoole, openswoole]

Expand Down
4 changes: 2 additions & 2 deletions src/Commands/StartRoadRunnerCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
class StartRoadRunnerCommand extends Command implements SignalableCommandInterface
{
use Concerns\InstallsRoadRunnerDependencies,
Concerns\InteractsWithServers,
Concerns\InteractsWithEnvironmentVariables;
Concerns\InteractsWithEnvironmentVariables,
Concerns\InteractsWithServers;

/**
* The command's signature.
Expand Down
2 changes: 1 addition & 1 deletion src/Commands/StartSwooleCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

class StartSwooleCommand extends Command implements SignalableCommandInterface
{
use Concerns\InteractsWithServers, Concerns\InteractsWithEnvironmentVariables;
use Concerns\InteractsWithEnvironmentVariables, Concerns\InteractsWithServers;

/**
* The command's signature.
Expand Down
2 changes: 0 additions & 2 deletions src/RoadRunner/Concerns/FindsRoadRunnerBinary.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ trait FindsRoadRunnerBinary
{
/**
* Find the RoadRunner binary used by the application.
*
* @return string
*/
protected function findRoadRunnerBinary(): ?string
{
Expand Down
2 changes: 0 additions & 2 deletions src/SymfonyProcessFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ class SymfonyProcessFactory
/**
* Create a new Symfony process instance.
*
* @param string $cwd
* @param array $env
* @param mixed|null $input
* @return \Symfony\Component\Process\Process
*/
Expand Down
4 changes: 0 additions & 4 deletions src/Worker.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,6 @@ public function boot(array $initialInstances = []): void

/**
* Handle an incoming request and send the response to the client.
*
* @param \Laravel\Octane\RequestContext $context
*/
public function handle(Request $request, RequestContext $context): void
{
Expand Down Expand Up @@ -181,8 +179,6 @@ public function handleTick(): void

/**
* Handle an uncaught exception from the worker.
*
* @param \Laravel\Octane\RequestContext $context
*/
protected function handleWorkerError(
Throwable $e,
Expand Down