refactor: qr-code filter

This commit is contained in:
Benjamin Nussbaum 2026-01-15 22:19:03 +01:00
parent e660da46fb
commit 33b1083770
4 changed files with 174 additions and 22 deletions

View file

@ -16,7 +16,7 @@ class AppServiceProvider extends ServiceProvider
*/
public function register(): void
{
$this->app->bind('qr-code', fn (): QrCodeService => new QrCodeService);
$this->app->bind('qr-code', fn () => new QrCodeService);
}
/**