Skip to content

Commit

Permalink
Adds notice.
Browse files Browse the repository at this point in the history
  • Loading branch information
a.stecher committed Jan 5, 2025
1 parent 599b853 commit 0307f79
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 12 deletions.
4 changes: 0 additions & 4 deletions config/octane.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,6 @@
],

RequestReceived::class => [
...Octane::prepareApplicationForNextOperation(),
...Octane::prepareApplicationForNextRequest(),
//
],

Expand All @@ -85,7 +83,6 @@
],

TaskReceived::class => [
...Octane::prepareApplicationForNextOperation(),
//
],

Expand All @@ -94,7 +91,6 @@
],

TickReceived::class => [
...Octane::prepareApplicationForNextOperation(),
//
],

Expand Down
12 changes: 4 additions & 8 deletions src/Concerns/ProvidesDefaultConfigurationOptions.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,19 @@
trait ProvidesDefaultConfigurationOptions
{
/**
* Get the listeners that will prepare the Laravel application for a new request.
* This method is kept for BC reasons.
*/
public static function prepareApplicationForNextRequest(): array
{
return [

];
return [];
}

/**
* Get the listeners that will prepare the Laravel application for a new operation.
* This method is kept for BC reasons.
*/
public static function prepareApplicationForNextOperation(): array
{
return [

];
return [];
}

/**
Expand Down

0 comments on commit 0307f79

Please sign in to comment.