From 0126ecc1b0a1199e411ad0adca29bc05b0f28a25 Mon Sep 17 00:00:00 2001 From: Christophe Coevoet Date: Wed, 22 Apr 2015 15:01:36 +0200 Subject: [PATCH] Fix an invalid phpdoc --- src/Api.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Api.php b/src/Api.php index 5489558..979f888 100644 --- a/src/Api.php +++ b/src/Api.php @@ -249,7 +249,7 @@ class Api * Wrap call to Ovh APIs for GET requests * * @param string $path path ask inside api - * @param array\\stdClass|null $content content to send inside body of request + * @param array|\stdClass|null $content content to send inside body of request * * @return array * @@ -266,7 +266,7 @@ class Api * Wrap call to Ovh APIs for POST requests * * @param string $path path ask inside api - * @param array\\stdClass|null $content content to send inside body of request + * @param array|\stdClass|null $content content to send inside body of request * * @return array * @@ -283,7 +283,7 @@ class Api * Wrap call to Ovh APIs for PUT requests * * @param string $path path ask inside api - * @param array\\stdClass|null $content content to send inside body of request + * @param array|\stdClass|null $content content to send inside body of request * * @return array * @@ -300,7 +300,7 @@ class Api * Wrap call to Ovh APIs for DELETE requests * * @param string $path path ask inside api - * @param array\\stdClass|null $content content to send inside body of request + * @param array|\stdClass|null $content content to send inside body of request * * @return array *