From 21c5631cc34346513bc95c2414f2de813ba14653 Mon Sep 17 00:00:00 2001 From: Maxim Babichev Date: Tue, 23 Jul 2024 23:08:16 +0300 Subject: [PATCH] fix phpdoc --- src/Traits/MorphOneWallet.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Traits/MorphOneWallet.php b/src/Traits/MorphOneWallet.php index 8c7c0ed0e..6b239cf4e 100644 --- a/src/Traits/MorphOneWallet.php +++ b/src/Traits/MorphOneWallet.php @@ -49,7 +49,7 @@ public function wallet(): MorphOne // Get the dynamic default slug from the related model, if available. // Otherwise, use the default slug from the configuration. - /** @var class-string $slug */ + /** @var string $slug */ $slug = method_exists($model, 'getDynamicDefaultSlug') ? $model->getDynamicDefaultSlug() : config('wallet.wallet.default.slug', 'default');