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