Airship\Engine\Security\Authentication::setPasswordField PHP Method

setPasswordField() public method

Sets the column name used to reference the password hash stored in the database, for SQL queries.
public setPasswordField ( string $field ) : self
$field string
return self ($this)
    public function setPasswordField(string $field) : self
    {
        $this->tableConfig['field']['accounts']['password'] = $field;
        return $this;
    }