Skip to content

Commit 28af6dc

Browse files
committed
Merge pull request #1 from hirakchatterjee/master
Fix for "anyOf" method, wrong string concatenation operator
2 parents b340925 + f04171d commit 28af6dc

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)