Skip to content

Commit aa16e89

Browse files
committedOct 25, 2024··
fix class instance var typo
1 parent eb21237 commit aa16e89

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/ApiOptions/Input.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ public function wrapper(string $wrapper): Input
140140
public function wrapperClass(string $wrapperClass): Input
141141
{
142142
$wrapperClass = htmlspecialchars($wrapperClass, ENT_QUOTES, 'UTF-8');
143-
$this->$wrapperClass = $wrapperClass;
143+
$this->wrapperClass = $wrapperClass;
144144
return $this;
145145
}
146146

0 commit comments

Comments
 (0)
Please sign in to comment.