Skip to content

Commit

Permalink
Today is a bad day
Browse files Browse the repository at this point in the history
  • Loading branch information
Ritvars Zvejnieks committed May 20, 2023
1 parent 8b52aa8 commit cd3a79f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ In order to customize when the profiler runs, you can replace it with a class th
This can be usesful to profile only some requests.

```php
class CustomProfileEnabler extends SerializableClosure
class CustomProfileEnabler implements SerializableClosure
{
public function getClosure(): \Closure
{
Expand Down
2 changes: 1 addition & 1 deletion src/Support/ProfileEnabler/DefaultProfileEnabler.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
/**
* By default, the profiler is enabled for all requests.
*/
class DefaultProfileEnabler extends SerializableClosure
class DefaultProfileEnabler implements SerializableClosure
{
public function getClosure(): \Closure
{
Expand Down
2 changes: 1 addition & 1 deletion src/Support/ReplaceUrl/DefaultReplaceUrl.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

use Ritvarsz\LaravelXhgui\Support\SerializableClosure;

class DefaultReplaceUrl extends SerializableClosure
class DefaultReplaceUrl implements SerializableClosure
{
public function getClosure(): \Closure
{
Expand Down
2 changes: 1 addition & 1 deletion src/Support/SimpleUrl/DefaultSimpleUrl.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

use Ritvarsz\LaravelXhgui\Support\SerializableClosure;

class DefaultSimpleUrl extends SerializableClosure
class DefaultSimpleUrl implements SerializableClosure
{
public function getClosure(): \Closure
{
Expand Down

0 comments on commit cd3a79f

Please sign in to comment.