PayPal\Auth\PPSignatureCredential::__construct PHP Method

__construct() public method

public __construct ( $userName, $password, $signature )
    public function __construct($userName, $password, $signature)
    {
        $this->userName = trim($userName);
        $this->password = trim($password);
        $this->signature = trim($signature);
        $this->validate();
    }