Skip to content

Commit f04171d

Browse files
committed
Fix for "anyOf" method, wrong string concatenation operator
1 parent b340925 commit f04171d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

VerbalExpressions.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ function word() {
182182
* @param string $value The chars looked for
183183
*/
184184
function anyOf( $value ) {
185-
$this->add("["+ value +"]");
185+
$this->add("[". $value ."]");
186186
return $this;
187187
}
188188
/**

0 commit comments

Comments
 (0)