1
0
mirror of https://github.com/ovh/php-ovh.git synced 2023-11-05 03:20:26 +01:00

Fix an invalid phpdoc

This commit is contained in:
Christophe Coevoet 2015-04-22 15:01:36 +02:00
parent 18aec30356
commit 0126ecc1b0

View File

@ -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
*