JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbrstatus === MandateStatus::STATUS_VALID; } /** * @return bool */ public function isPending() { return $this->status === MandateStatus::STATUS_PENDING; } /** * @return bool */ public function isInvalid() { return $this->status === MandateStatus::STATUS_INVALID; } /** * Revoke the mandate * * @return null|\stdClass|\Mollie\Api\Resources\Mandate */ public function revoke() { if (! isset($this->_links->self->href)) { return $this; } $body = null; if ($this->client->usesOAuth()) { $body = json_encode([ "testmode" => $this->mode === "test" ? true : false, ]); } $result = $this->client->performHttpCallToFullUrl( MollieApiClient::HTTP_DELETE, $this->_links->self->href, $body ); return $result; } }