actor->sendGET($this->getUrl()); } public function enable($totp = null, $password = null) { $this->actor->sendPOST($this->getUrl(), [ 'totp' => $totp, 'password' => $password, ]); } public function disable($totp = null, $password = null) { $this->actor->sendDELETE($this->getUrl(), [ 'totp' => $totp, 'password' => $password, ]); } }