Skip to content

Commit 5386d79

Browse files
author
William Knauss
committed
changed var to public
1 parent d636108 commit 5386d79

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

VerbalExpressions.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@
4040

4141
class VerEx {
4242

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
43+
public $prefixes = "";
44+
public $source = "";
45+
public $suffixes = "";
46+
public $modifiers = "m"; // default to global multiline matching
47+
public $replaceLimit = 1; // the limit of preg_replace when g modifier is not set
4848

4949
/**
5050
* Sanitize
@@ -577,4 +577,4 @@ public function clean($options = array())
577577
return $this;
578578
}
579579

580-
}
580+
}

0 commit comments

Comments
 (0)