ValidationLogicCriteria::__construct PHP Method

__construct() public method

Constructor
public __construct ( FormField $slave, [type] $master, [type] $parent = null )
$slave FormField The form field that responds to changes of another form field
$master [type]
$parent [type]
    public function __construct(FormField $slave, $master, $parent = null)
    {
        parent::__construct();
        $this->slave = $slave;
        $this->master = $master;
        $this->parent = $parent;
        return $this;
    }