We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d636108 commit 5386d79Copy full SHA for 5386d79
VerbalExpressions.php
@@ -40,11 +40,11 @@
40
41
class VerEx {
42
43
- var $prefixes = "";
44
- var $source = "";
45
- var $suffixes = "";
46
- var $modifiers = "m"; // default to global multiline matching
47
- var $replaceLimit = 1; // the limit of preg_replace when g modifier is not set
+ public $prefixes = "";
+ public $source = "";
+ public $suffixes = "";
+ public $modifiers = "m"; // default to global multiline matching
+ public $replaceLimit = 1; // the limit of preg_replace when g modifier is not set
48
49
/**
50
* Sanitize
@@ -577,4 +577,4 @@ public function clean($options = array())
577
return $this;
578
}
579
580
-}
+}
0 commit comments