fix typo in method name
[GitHub/Stricted/speedport-hybrid-php-api.git] / lib / trait / CryptLib.class.php
index ce32bb75f62482ef9972cdd312477cbc3ed53644..1ff94990a142301f7bf3b624ea973a07f791481e 100644 (file)
@@ -13,10 +13,10 @@ trait CryptLib {
         * @param       string  $cookie
         * @return      array
         */
-       private function sentEncryptedRequest ($path, $fields, $cookie = false) {
+       private function sendEncryptedRequest ($path, $fields, $cookie = false) {
                $count = count($fields);
                $fields = $this->encrypt(http_build_query($fields));
-               return $this->sentRequest($path, $fields, $cookie, $count);
+               return $this->sendRequest($path, $fields, $cookie, $count);
        }
        
        /**