summaryrefslogtreecommitdiff
path: root/server/core/NetworkLayer3.php
diff options
context:
space:
mode:
authorEoleDev <EoleDev@outlook.fr>2016-04-26 20:42:31 +0200
committerEoleDev <EoleDev@outlook.fr>2016-04-26 20:42:31 +0200
commit5263cf00a253891396c442fe5be29762fb8be50d (patch)
tree36adbdf4ccefaf85fe0ffb9c08c44f2fb8221da6 /server/core/NetworkLayer3.php
parent477dc821824b422c11d0d34b644de4b68a596510 (diff)
Refactoring of comments beginning
Diffstat (limited to 'server/core/NetworkLayer3.php')
-rwxr-xr-xserver/core/NetworkLayer3.php156
1 files changed, 78 insertions, 78 deletions
diff --git a/server/core/NetworkLayer3.php b/server/core/NetworkLayer3.php
index 30e8a78..c0b773a 100755
--- a/server/core/NetworkLayer3.php
+++ b/server/core/NetworkLayer3.php
@@ -51,10 +51,10 @@ class networkLayer3 {
*
* @param String $action name of another function of this class
*
- * @return void
+ * @return NULL
*/
public function action($action){
- $this->{$action.""}();
+ $this->{$action.""}();
}
@@ -75,15 +75,15 @@ class networkLayer3 {
$this->app->setOutput("NetworkLayer3", $result);
}catch(BadResponseError $e){
$this->app->getErrorInstance()->BadResponseHandler($e);
- }catch(UserInputError $e){
+ }catch(UserInputError $e){
$this->app->getErrorInstance()->UserInputHandler($e);
- }catch(BaseError $e){
+ }catch(BaseError $e){
$this->app->getErrorInstance()->BaseErrorHandler($e);
- }catch(NotImplementedError $e){
+ }catch(NotImplementedError $e){
$this->app->getErrorInstance()->NotImplementedHandler($e);
- }catch(Exception $e){
- $this->app->getErrorInstance()->OtherException($e);
- }
+ }catch(Exception $e){
+ $this->app->getErrorInstance()->OtherException($e);
+ }
}
/**
@@ -109,15 +109,15 @@ class networkLayer3 {
}
}catch(BadResponseError $e){
$this->app->getErrorInstance()->BadResponseHandler($e);
- }catch(UserInputError $e){
+ }catch(UserInputError $e){
$this->app->getErrorInstance()->UserInputHandler($e);
- }catch(BaseError $e){
+ }catch(BaseError $e){
$this->app->getErrorInstance()->BaseErrorHandler($e);
- }catch(NotImplementedError $e){
+ }catch(NotImplementedError $e){
$this->app->getErrorInstance()->NotImplementedHandler($e);
- }catch(Exception $e){
- $this->app->getErrorInstance()->OtherException($e);
- }
+ }catch(Exception $e){
+ $this->app->getErrorInstance()->OtherException($e);
+ }
}
@@ -147,7 +147,7 @@ class networkLayer3 {
foreach ($res as $f) {
if(strcmp($f->id, $id)){
$result = $f;
-
+
}
}
@@ -159,15 +159,15 @@ class networkLayer3 {
}
}catch(BadResponseError $e){
$this->app->getErrorInstance()->BadResponseHandler($e);
- }catch(UserInputError $e){
+ }catch(UserInputError $e){
$this->app->getErrorInstance()->UserInputHandler($e);
- }catch(BaseError $e){
+ }catch(BaseError $e){
$this->app->getErrorInstance()->BaseErrorHandler($e);
- }catch(NotImplementedError $e){
+ }catch(NotImplementedError $e){
$this->app->getErrorInstance()->NotImplementedHandler($e);
- }catch(Exception $e){
- $this->app->getErrorInstance()->OtherException($e);
- }
+ }catch(Exception $e){
+ $this->app->getErrorInstance()->OtherException($e);
+ }
}
/**
@@ -175,7 +175,7 @@ class networkLayer3 {
*
* @param id the id of the floatingip to update
*
- * @return void
+ * @return NULL
*/
private function updateFloatingIp(){
$id = $this->app->getPostParam("id");
@@ -197,7 +197,7 @@ class networkLayer3 {
foreach ($res as $f) {
if(strcmp($f->id, $id)){
$result = $f;
-
+
}
}
@@ -208,15 +208,15 @@ class networkLayer3 {
}
}catch(BadResponseError $e){
$this->app->getErrorInstance()->BadResponseHandler($e);
- }catch(UserInputError $e){
+ }catch(UserInputError $e){
$this->app->getErrorInstance()->UserInputHandler($e);
- }catch(BaseError $e){
+ }catch(BaseError $e){
$this->app->getErrorInstance()->BaseErrorHandler($e);
- }catch(NotImplementedError $e){
+ }catch(NotImplementedError $e){
$this->app->getErrorInstance()->NotImplementedHandler($e);
- }catch(Exception $e){
- $this->app->getErrorInstance()->OtherException($e);
- }
+ }catch(Exception $e){
+ $this->app->getErrorInstance()->OtherException($e);
+ }
}
/**
@@ -224,7 +224,7 @@ class networkLayer3 {
*
* @param string floatingip_id the floating-ip id to delete
*
- * @return void
+ * @return NULL
*/
private function deleteFloatingIp(){
$id = $this->app->getPostParam("id");
@@ -245,7 +245,7 @@ class networkLayer3 {
foreach ($res as $f) {
if(strcmp($f->id, $id)){
$result = $f;
-
+
}
}
@@ -256,15 +256,15 @@ class networkLayer3 {
}
}catch(BadResponseError $e){
$this->app->getErrorInstance()->BadResponseHandler($e);
- }catch(UserInputError $e){
+ }catch(UserInputError $e){
$this->app->getErrorInstance()->UserInputHandler($e);
- }catch(BaseError $e){
+ }catch(BaseError $e){
$this->app->getErrorInstance()->BaseErrorHandler($e);
- }catch(NotImplementedError $e){
+ }catch(NotImplementedError $e){
$this->app->getErrorInstance()->NotImplementedHandler($e);
- }catch(Exception $e){
- $this->app->getErrorInstance()->OtherException($e);
- }
+ }catch(Exception $e){
+ $this->app->getErrorInstance()->OtherException($e);
+ }
}
@@ -273,7 +273,7 @@ class networkLayer3 {
*
* @param string floatingip_id the floating-ip id to retrieve
*
- * @return void
+ * @return NULL
*/
private function retrieveFloatingIp(){
$id = $this->app->getPostParam("id");
@@ -294,7 +294,7 @@ class networkLayer3 {
foreach ($res as $f) {
if(strcmp($f->id, $id)){
$result = $f;
-
+
}
}
@@ -305,15 +305,15 @@ class networkLayer3 {
}
}catch(BadResponseError $e){
$this->app->getErrorInstance()->BadResponseHandler($e);
- }catch(UserInputError $e){
+ }catch(UserInputError $e){
$this->app->getErrorInstance()->UserInputHandler($e);
- }catch(BaseError $e){
+ }catch(BaseError $e){
$this->app->getErrorInstance()->BaseErrorHandler($e);
- }catch(NotImplementedError $e){
+ }catch(NotImplementedError $e){
$this->app->getErrorInstance()->NotImplementedHandler($e);
- }catch(Exception $e){
- $this->app->getErrorInstance()->OtherException($e);
- }
+ }catch(Exception $e){
+ $this->app->getErrorInstance()->OtherException($e);
+ }
}
@@ -344,15 +344,15 @@ class networkLayer3 {
}
}catch(BadResponseError $e){
$this->app->getErrorInstance()->BadResponseHandler($e);
- }catch(UserInputError $e){
+ }catch(UserInputError $e){
$this->app->getErrorInstance()->UserInputHandler($e);
- }catch(BaseError $e){
+ }catch(BaseError $e){
$this->app->getErrorInstance()->BaseErrorHandler($e);
- }catch(NotImplementedError $e){
+ }catch(NotImplementedError $e){
$this->app->getErrorInstance()->NotImplementedHandler($e);
- }catch(Exception $e){
- $this->app->getErrorInstance()->OtherException($e);
- }
+ }catch(Exception $e){
+ $this->app->getErrorInstance()->OtherException($e);
+ }
}
@@ -372,15 +372,15 @@ class networkLayer3 {
$this->app->setOutput("NetworkLayer3", $result);
}catch(BadResponseError $e){
$this->app->getErrorInstance()->BadResponseHandler($e);
- }catch(UserInputError $e){
+ }catch(UserInputError $e){
$this->app->getErrorInstance()->UserInputHandler($e);
- }catch(BaseError $e){
+ }catch(BaseError $e){
$this->app->getErrorInstance()->BaseErrorHandler($e);
- }catch(NotImplementedError $e){
+ }catch(NotImplementedError $e){
$this->app->getErrorInstance()->NotImplementedHandler($e);
- }catch(Exception $e){
- $this->app->getErrorInstance()->OtherException($e);
- }
+ }catch(Exception $e){
+ $this->app->getErrorInstance()->OtherException($e);
+ }
}
@@ -420,15 +420,15 @@ class networkLayer3 {
}
}catch(BadResponseError $e){
$this->app->getErrorInstance()->BadResponseHandler($e);
- }catch(UserInputError $e){
+ }catch(UserInputError $e){
$this->app->getErrorInstance()->UserInputHandler($e);
- }catch(BaseError $e){
+ }catch(BaseError $e){
$this->app->getErrorInstance()->BaseErrorHandler($e);
- }catch(NotImplementedError $e){
+ }catch(NotImplementedError $e){
$this->app->getErrorInstance()->NotImplementedHandler($e);
- }catch(Exception $e){
- $this->app->getErrorInstance()->OtherException($e);
- }
+ }catch(Exception $e){
+ $this->app->getErrorInstance()->OtherException($e);
+ }
}
@@ -437,7 +437,7 @@ class networkLayer3 {
*
* @param string router the router to delete
*
- * @return void
+ * @return NULL
*/
private function deleteRouter(){
$id = $this->app->getPostParam("id");
@@ -468,15 +468,15 @@ class networkLayer3 {
}
}catch(BadResponseError $e){
$this->app->getErrorInstance()->BadResponseHandler($e);
- }catch(UserInputError $e){
+ }catch(UserInputError $e){
$this->app->getErrorInstance()->UserInputHandler($e);
- }catch(BaseError $e){
+ }catch(BaseError $e){
$this->app->getErrorInstance()->BaseErrorHandler($e);
- }catch(NotImplementedError $e){
+ }catch(NotImplementedError $e){
$this->app->getErrorInstance()->NotImplementedHandler($e);
- }catch(Exception $e){
- $this->app->getErrorInstance()->OtherException($e);
- }
+ }catch(Exception $e){
+ $this->app->getErrorInstance()->OtherException($e);
+ }
}
@@ -485,7 +485,7 @@ class networkLayer3 {
*
* @param id the id of the floatingip to update
*
- * @return void
+ * @return NULL
*/
private function updateRouter(){
$id = $this->app->getPostParam("id");
@@ -507,7 +507,7 @@ class networkLayer3 {
foreach ($res as $f) {
if(strcmp($f->id, $id)){
$result = $f;
-
+
}
}
@@ -518,14 +518,14 @@ class networkLayer3 {
}
}catch(BadResponseError $e){
$this->app->getErrorInstance()->BadResponseHandler($e);
- }catch(UserInputError $e){
+ }catch(UserInputError $e){
$this->app->getErrorInstance()->UserInputHandler($e);
- }catch(BaseError $e){
+ }catch(BaseError $e){
$this->app->getErrorInstance()->BaseErrorHandler($e);
- }catch(NotImplementedError $e){
+ }catch(NotImplementedError $e){
$this->app->getErrorInstance()->NotImplementedHandler($e);
- }catch(Exception $e){
- $this->app->getErrorInstance()->OtherException($e);
- }
+ }catch(Exception $e){
+ $this->app->getErrorInstance()->OtherException($e);
+ }
}
}