Skip to content

Commit

Permalink
Merge pull request #14616 from filamentphp/fix/import-export-null-bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
danharrin committed Oct 24, 2024
1 parent 1d17d65 commit 5e9a946
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/FilamentServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,13 @@ public function packageBooted(): void
$file->getRealPath() => base_path("stubs/filament/{$file->getFilename()}"),
], 'filament-stubs');
}

if (method_exists($this, 'optimizes')) {
$this->optimizes(
optimize: 'filament:optimize', /** @phpstan-ignore-line */
clear: 'filament:optimize-clear', /** @phpstan-ignore-line */
);
}
}
}

Expand Down

0 comments on commit 5e9a946

Please sign in to comment.