Skip to content

Commit

Permalink
Merge pull request #2 from Laragear/analysis-gOMLvG
Browse files Browse the repository at this point in the history
Apply fixes from StyleCI
  • Loading branch information
DarkGhostHunter authored Feb 17, 2022
2 parents ba99c92 + 1df593c commit 631f662
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/CacheQueryServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
use Closure;
use DateInterval;
use DateTimeInterface;
use function func_get_args;
use Illuminate\Database\Eloquent\Builder as EloquentBuilder;
use Illuminate\Database\Query\Builder;
use Illuminate\Support\ServiceProvider;
use function func_get_args;

/**
* @internal
Expand Down Expand Up @@ -48,7 +48,7 @@ public function boot(): void
$this->publishes([static::STUBS => $this->app->basePath('.stubs/cache-query.php')], 'phpstorm');

$this->commands([
Console\Commands\CacheQuery\Forget::class
Console\Commands\CacheQuery\Forget::class,
]);
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/Console/Commands/CacheQuery/Forget.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ protected function retrieveKey(ConfigContract $config): array
{
return [
$this->argument('key'),
(string) str($config->get('cache-query.prefix'))->finish('|')->append($this->argument('key'))
(string) str($config->get('cache-query.prefix'))->finish('|')->append($this->argument('key')),
];
}
}

0 comments on commit 631f662

Please sign in to comment.