Newscoop\Entity\User::getSalt PHP Метод

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

Get password salt for authentication
public getSalt ( ) : string
Результат string
    public function getSalt()
    {
        list($algo, $salt, $password_hash) = explode(self::HASH_SEP, $this->password);
        return $salt;
    }