Skip to content

Commit

Permalink
#145 - csf
Browse files Browse the repository at this point in the history
  • Loading branch information
krzysztofrewak committed Sep 26, 2024
1 parent 9400201 commit 2307175
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
3 changes: 1 addition & 2 deletions app/Console/Commands/FlushCache.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,14 @@

namespace Keating\Console\Commands;

use Illuminate\Cache\CacheManager;
use Illuminate\Console\Command;

class FlushCache extends Command
{
protected $signature = "cache:flush";
protected $description = "Flush cached data";

public function handle(CacheManager $cache): void
public function handle(): void
{
$this->call(FlushCachedPageTitle::class);
$this->call(FlushCachedScheduleLink::class);
Expand Down
1 change: 0 additions & 1 deletion database/seeders/ProductionSeeder.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
namespace Database\Seeders;

use Illuminate\Database\Seeder;
use Keating\Models\Section;
use Keating\Models\SectionSettings;
use Keating\Models\Setting;
use Keating\Models\User;
Expand Down

0 comments on commit 2307175

Please sign in to comment.