From 1d42345e07b2ef557de3c5049864e6885632b9e9 Mon Sep 17 00:00:00 2001 From: EoleDev Date: Wed, 27 Apr 2016 14:22:59 +0200 Subject: End of comments --- server/core/NetworkLayer3.php | 42 +++++++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 21 deletions(-) (limited to 'server/core/NetworkLayer3.php') diff --git a/server/core/NetworkLayer3.php b/server/core/NetworkLayer3.php index c0b773a..35bf707 100755 --- a/server/core/NetworkLayer3.php +++ b/server/core/NetworkLayer3.php @@ -1,41 +1,41 @@ {$action.""}(); @@ -61,7 +61,7 @@ class networkLayer3 { /** * List floatingip * - * @return list of the floatingip + * @return void */ private function listFloatingIp(){ try{ @@ -91,7 +91,7 @@ class networkLayer3 { * * @param array $opt Options for the floating ip creation (floatingNetworkId is required) * - * @return floatingip + * @return void */ private function createFloatingIp(){ $opt = $this->app->getPostParam("opt"); @@ -126,7 +126,7 @@ class networkLayer3 { * * @param String id the id of the floatingip * - * @return floatingip details + * @return void */ private function getFloatingIp(){ $id = $this->app->getPostParam("id"); @@ -175,7 +175,7 @@ class networkLayer3 { * * @param id the id of the floatingip to update * - * @return NULL + * @return void */ private function updateFloatingIp(){ $id = $this->app->getPostParam("id"); @@ -224,7 +224,7 @@ class networkLayer3 { * * @param string floatingip_id the floating-ip id to delete * - * @return NULL + * @return void */ private function deleteFloatingIp(){ $id = $this->app->getPostParam("id"); @@ -273,7 +273,7 @@ class networkLayer3 { * * @param string floatingip_id the floating-ip id to retrieve * - * @return NULL + * @return void */ private function retrieveFloatingIp(){ $id = $this->app->getPostParam("id"); @@ -326,7 +326,7 @@ class networkLayer3 { * adminStateUp (optionnal) * name (optionnal) * - * @return router + * @return void */ private function createRouter(){ $opt = $this->app->getPostParam("opt"); @@ -359,7 +359,7 @@ class networkLayer3 { /** * List routers * - * @return list of the routers + * @return void */ private function listRouters(){ try{ @@ -389,7 +389,7 @@ class networkLayer3 { * * @param String id the id of the router * - * @return router details + * @return void */ private function getRouter(){ $id = $this->app->getPostParam("id"); @@ -437,7 +437,7 @@ class networkLayer3 { * * @param string router the router to delete * - * @return NULL + * @return void */ private function deleteRouter(){ $id = $this->app->getPostParam("id"); @@ -485,7 +485,7 @@ class networkLayer3 { * * @param id the id of the floatingip to update * - * @return NULL + * @return void */ private function updateRouter(){ $id = $this->app->getPostParam("id"); -- cgit v1.2.3