Skip to content

Commit

Permalink
Fix broken type hinting in ValidationLogicCriteria
Browse files Browse the repository at this point in the history
  • Loading branch information
kinglozzer committed Jun 5, 2015
1 parent 2f577fc commit 7b53b54
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/ValidationLogicCriteria.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class ValidationLogicCriteria extends Object {
* @param [type] $master The name of the form field to respond to
* @param [type] $parent The parent {@link ValidationLogicCriteria}
*/
public function __construct(ZenValidatorConstraint $slave, $master, $parent = null) {
public function __construct(FormField $slave, $master, $parent = null) {
parent::__construct();
$this->slave = $slave;
$this->master = $master;
Expand Down Expand Up @@ -245,4 +245,4 @@ public function getMasterList() {
return $list;
}

}
}

0 comments on commit 7b53b54

Please sign in to comment.