Skip to content

Commit 4825b96

Browse files
committed
Fix LineRendererFactory case-sensitive problem
Signed-off-by: Jack Cherng <jfcherng@gmail.com>
1 parent e5e6a4b commit 4825b96

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Utility/LineRendererFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public static function getInstance(string $type): AbstractLineRenderer
5252
*/
5353
public static function make(string $type, ...$ctorArgs): AbstractLineRenderer
5454
{
55-
$className = RendererConstant::RENDERER_NAMESPACE . '\\HTML\\LineRenderer\\' . \ucfirst($type);
55+
$className = RendererConstant::RENDERER_NAMESPACE . '\\Html\\LineRenderer\\' . \ucfirst($type);
5656

5757
if (!\class_exists($className)) {
5858
throw new InvalidArgumentException("LineRenderer not found: {$type}");

0 commit comments

Comments
 (0)