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

Merge pull request #13 from stof/fix_phpdoc

Fix an invalid phpdoc
This commit is contained in:
Vincent Cassé 2015-04-22 17:50:49 +02:00
commit 81d39e670e

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
*