From 65051c8b3f27b7fc66a5ca437349b1d9958d49ba Mon Sep 17 00:00:00 2001 From: Ali Sharifi Neyestani Date: Thu, 9 Mar 2023 13:34:11 +0330 Subject: [PATCH] remove unnecessary qualifiers --- src/ClassRouteAttributes.php | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/ClassRouteAttributes.php b/src/ClassRouteAttributes.php index 9517c1f..f6bb4d4 100644 --- a/src/ClassRouteAttributes.php +++ b/src/ClassRouteAttributes.php @@ -26,7 +26,7 @@ public function __construct( */ public function prefix(): ?string { - /** @var \Spatie\RouteAttributes\Attributes\Prefix $attribute */ + /** @var Prefix $attribute */ if (! $attribute = $this->getAttribute(Prefix::class)) { return null; } @@ -39,7 +39,7 @@ public function prefix(): ?string */ public function domain(): ?string { - /** @var \Spatie\RouteAttributes\Attributes\Domain $attribute */ + /** @var Domain $attribute */ if (! $attribute = $this->getAttribute(Domain::class)) { return null; } @@ -52,7 +52,7 @@ public function domain(): ?string */ public function domainFromConfig(): ?string { - /** @var \Spatie\RouteAttributes\Attributes\DomainFromConfig $attribute */ + /** @var DomainFromConfig $attribute */ if (! $attribute = $this->getAttribute(DomainFromConfig::class)) { return null; } @@ -94,7 +94,7 @@ public function groups(): array */ public function resource(): ?string { - /** @var \Spatie\RouteAttributes\Attributes\Resource $attribute */ + /** @var Resource $attribute */ if (! $attribute = $this->getAttribute(Resource::class)) { return null; } @@ -107,7 +107,7 @@ public function resource(): ?string */ public function parameters(): array | string | null { - /** @var \Spatie\RouteAttributes\Attributes\Resource $attribute */ + /** @var Resource $attribute */ if (! $attribute = $this->getAttribute(Resource::class)) { return null; } @@ -120,7 +120,7 @@ public function parameters(): array | string | null */ public function shallow(): bool | null { - /** @var \Spatie\RouteAttributes\Attributes\Resource $attribute */ + /** @var Resource $attribute */ if (! $attribute = $this->getAttribute(Resource::class)) { return null; } @@ -133,7 +133,7 @@ public function shallow(): bool | null */ public function apiResource(): ?string { - /** @var \Spatie\RouteAttributes\Attributes\Resource $attribute */ + /** @var Resource $attribute */ if (! $attribute = $this->getAttribute(Resource::class)) { return null; } @@ -146,7 +146,7 @@ public function apiResource(): ?string */ public function except(): string | array | null { - /** @var \Spatie\RouteAttributes\Attributes\Resource $attribute */ + /** @var Resource $attribute */ if (! $attribute = $this->getAttribute(Resource::class)) { return null; } @@ -159,7 +159,7 @@ public function except(): string | array | null */ public function only(): string | array | null { - /** @var \Spatie\RouteAttributes\Attributes\Resource $attribute */ + /** @var Resource $attribute */ if (! $attribute = $this->getAttribute(Resource::class)) { return null; } @@ -172,7 +172,7 @@ public function only(): string | array | null */ public function names(): string | array | null { - /** @var \Spatie\RouteAttributes\Attributes\Resource $attribute */ + /** @var Resource $attribute */ if (! $attribute = $this->getAttribute(Resource::class)) { return null; } @@ -185,7 +185,7 @@ public function names(): string | array | null */ public function middleware(): array { - /** @var \Spatie\RouteAttributes\Attributes\Middleware $attribute */ + /** @var Middleware $attribute */ if (! $attribute = $this->getAttribute(Middleware::class)) { return []; } @@ -195,7 +195,7 @@ public function middleware(): array public function scopeBindings(): bool { - /** @var \Spatie\RouteAttributes\Attributes\ScopeBindings $attribute */ + /** @var ScopeBindings $attribute */ if (! $attribute = $this->getAttribute(ScopeBindings::class)) { return false; }