Commit 7cebaf58 authored by Franco Fichtner's avatar Franco Fichtner

mvc: latest style nitpick additions

parent d2c4efe0
...@@ -73,7 +73,7 @@ $di->set('config', $config); ...@@ -73,7 +73,7 @@ $di->set('config', $config);
/** /**
* Setup router * Setup router
*/ */
$di->set('router', function() { $di->set('router', function () {
$router = new \Phalcon\Mvc\Router(false); $router = new \Phalcon\Mvc\Router(false);
......
...@@ -169,7 +169,7 @@ class Config extends Singleton ...@@ -169,7 +169,7 @@ class Config extends Singleton
$node = $this->simplexml ; $node = $this->simplexml ;
// invalidate object on warnings/errors (prevent save from happening) // invalidate object on warnings/errors (prevent save from happening)
set_error_handler( set_error_handler(
function() { function () {
$this->statusIsValid = false; $this->statusIsValid = false;
} }
); );
...@@ -293,7 +293,7 @@ class Config extends Singleton ...@@ -293,7 +293,7 @@ class Config extends Singleton
} }
set_error_handler( set_error_handler(
function() { function () {
// reset simplexml pointer on parse error. // reset simplexml pointer on parse error.
$this->simplexml = null ; $this->simplexml = null ;
} }
......
...@@ -730,8 +730,7 @@ class CPClient ...@@ -730,8 +730,7 @@ class CPClient
} }
} }
unset ($acc_list); unset($acc_list);
} }
/** /**
......
...@@ -95,7 +95,7 @@ class IDS extends BaseModel ...@@ -95,7 +95,7 @@ class IDS extends BaseModel
foreach ($this->rules->rule->__items as $NodeKey => $NodeValue) { foreach ($this->rules->rule->__items as $NodeKey => $NodeValue) {
if ((string)$NodeValue->sid == $sid) { if ((string)$NodeValue->sid == $sid) {
$this->rules->rule->Del($NodeKey); $this->rules->rule->Del($NodeKey);
unset ($this->sid_list[$sid]); unset($this->sid_list[$sid]);
break; break;
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment