. */ declare(strict_types=1); namespace FireflyIII\Providers; use FireflyIII\Repositories\Rule\RuleRepository; use FireflyIII\Repositories\Rule\RuleRepositoryInterface; use Illuminate\Foundation\Application; use Illuminate\Support\ServiceProvider; /** * Class RuleServiceProvider. */ class RuleServiceProvider extends ServiceProvider { /** * Bootstrap the application services. */ public function boot(): void {} /** * Register the application services. */ public function register(): void { $this->app->bind( RuleRepositoryInterface::class, static function (Application $app) { /** @var RuleRepository $repository */ $repository = app(RuleRepository::class); if ($app->auth->check()) { // @phpstan-ignore-line (phpstan does not understand the reference to auth) $repository->setUser(auth()->user()); } return $repository; } ); } }