Neos\Flow\Security\Authentication\Token\UsernamePassword::__toString PHP Method

__toString() public method

Returns a string representation of the token for logging purposes.
public __toString ( ) : string
return string The username credential
    public function __toString()
    {
        return 'Username: "' . $this->credentials['username'] . '"';
    }