Former\Traits\Field::bind PHP Method

bind() public method

Change the field's bind destination
public bind ( $destination )
$destination
    public function bind($destination)
    {
        $this->bind = $destination;
        if ($this->type != 'password') {
            $this->value = $this->repopulate();
        }
        return $this;
    }