Skip to content

Commit

Permalink
Fix code styling
Browse files Browse the repository at this point in the history
  • Loading branch information
driesvints authored and github-actions[bot] committed Sep 21, 2023
1 parent c8ae72d commit 75f8d9d
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 11 deletions.
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

0 comments on commit 75f8d9d

Please sign in to comment.