Skip to content

Commit

Permalink
Fixed class name.
Browse files Browse the repository at this point in the history
  • Loading branch information
Stardog committed Feb 14, 2017
1 parent 1271d4f commit b481fa4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mod/pulse/class/PulseSchedule.php
Expand Up @@ -100,7 +100,7 @@ public function __construct()
$this->class_name = new \phpws2\Variable\StringVar(null, 'class_name'); $this->class_name = new \phpws2\Variable\StringVar(null, 'class_name');
$this->class_name->setLimit(100); $this->class_name->setLimit(100);
$this->end_time = new \phpws2\Variable\IntegerVar(0, 'end_time'); $this->end_time = new \phpws2\Variable\IntegerVar(0, 'end_time');
$this->hash = new \phpws2\Variable\Hash(null, 'hash'); $this->hash = new \phpws2\Variable\HashVar(null, 'hash');
$this->hash->allowNull(true); $this->hash->allowNull(true);
$this->hash->setLimit(64); $this->hash->setLimit(64);
$this->hold_on_error = new \phpws2\Variable\BooleanVar(0, 'hold_on_error'); $this->hold_on_error = new \phpws2\Variable\BooleanVar(0, 'hold_on_error');
Expand Down
2 changes: 1 addition & 1 deletion src-phpws2/src/Variable/HashVar.php
Expand Up @@ -8,7 +8,7 @@
* @license http://opensource.org/licenses/lgpl-3.0.html * @license http://opensource.org/licenses/lgpl-3.0.html
* @author Matthew McNaney <mcnaney at gmail dot com> * @author Matthew McNaney <mcnaney at gmail dot com>
*/ */
class HashType extends StringVar class HashVar extends StringVar
{ {
protected $regexp_match = '/^\w+$/'; protected $regexp_match = '/^\w+$/';


Expand Down

0 comments on commit b481fa4

Please sign in to comment.