JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbrclient); } /** * @param string $status * @return array|\Mollie\Api\Resources\MandateCollection */ public function whereStatus($status) { $collection = new self($this->client, 0, $this->_links); foreach ($this as $item) { if ($item->status === $status) { $collection[] = $item; $collection->count++; } } return $collection; } }