Airship\Engine\Security\Authentication::setPasswordField PHP Метод

setPasswordField() публичный Метод

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