Skip to content
This repository was archived by the owner on Feb 14, 2026. It is now read-only.

Commit 3737b67

Browse files
author
M.D
committed
pint
1 parent 067b4d4 commit 3737b67

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Concerns/InteractsWithResources.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
trait InteractsWithResources
99
{
10-
/** @return class-string<Resource>|null */
10+
/** @return class-string<resource>|null */
1111
public function getResourceClass(): ?string
1212
{
1313
return $this->resourceClass;
@@ -16,7 +16,7 @@ public function getResourceClass(): ?string
1616
/** @return class-string<Model>|null */
1717
public function getResourceModel(): ?string
1818
{
19-
/** @var class-string<Resource>|null $resource */
19+
/** @var class-string<resource>|null $resource */
2020
$resource = $this->getResourceClass();
2121

2222
return $resource ? $resource::getModel() : null;

0 commit comments

Comments
 (0)