Skip to content

Commit

Permalink
Imports order
Browse files Browse the repository at this point in the history
  • Loading branch information
shaedrich authored Dec 19, 2024
1 parent 88cc256 commit 48db8cd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/Illuminate/Cache/RateLimiter.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
use Illuminate\Support\Collection;
use Illuminate\Support\InteractsWithTime;

use const Illuminate\Support\Date\SECONDS_PER_MINUTE;

use function Illuminate\Support\enum_value;

use const Illuminate\Support\Date\SECONDS_PER_MINUTE;

Check failure on line 12 in src/Illuminate/Cache/RateLimiter.php

View workflow job for this annotation

GitHub Actions / Source Code

Used constant Illuminate\Support\Date\SECONDS_PER_MINUTE not found.

class RateLimiter
{
use InteractsWithTime;
Expand Down
2 changes: 1 addition & 1 deletion src/Illuminate/Cache/RateLimiting/Limit.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace Illuminate\Cache\RateLimiting;

use const Illuminate\Support\Date\{SECONDS_PER_MINUTE, MINUTES_PER_HOUR, HOURS_PER_DAY};
use const Illuminate\Support\Date\{HOURS_PER_DAY, MINUTES_PER_HOUR, SECONDS_PER_MINUTE};

Check failure on line 5 in src/Illuminate/Cache/RateLimiting/Limit.php

View workflow job for this annotation

GitHub Actions / Source Code

Used constant Illuminate\Support\Date\HOURS_PER_DAY not found.

Check failure on line 5 in src/Illuminate/Cache/RateLimiting/Limit.php

View workflow job for this annotation

GitHub Actions / Source Code

Used constant Illuminate\Support\Date\MINUTES_PER_HOUR not found.

Check failure on line 5 in src/Illuminate/Cache/RateLimiting/Limit.php

View workflow job for this annotation

GitHub Actions / Source Code

Used constant Illuminate\Support\Date\SECONDS_PER_MINUTE not found.

class Limit
{
Expand Down

0 comments on commit 48db8cd

Please sign in to comment.