Skip to content

Commit 5df0071

Browse files
committed
bug #190 Fix: Case mismatch (localheinz)
This PR was merged into the 1.0-dev branch. Discussion ---------- Fix: Case mismatch This PR * [x] fixes a case mismatch when referencing a class Commits ------- 3628894 Fix: Case mismatch
2 parents bb0485a + 3628894 commit 5df0071

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Util/ClassNameDetails.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,6 @@ public function getRelativeName(): string
5454

5555
public function getRelativeNameWithoutSuffix(): string
5656
{
57-
return str::removeSuffix($this->getRelativeName(), $this->suffix);
57+
return Str::removeSuffix($this->getRelativeName(), $this->suffix);
5858
}
5959
}

0 commit comments

Comments
 (0)