diff --git a/src/DhErrorLogging/Options/ModuleOptions.php b/src/DhErrorLogging/Options/ModuleOptions.php index b058fe3..e57233a 100644 --- a/src/DhErrorLogging/Options/ModuleOptions.php +++ b/src/DhErrorLogging/Options/ModuleOptions.php @@ -48,6 +48,7 @@ class ModuleOptions extends AbstractOptions */ protected $displayableerrorlevels = E_ALL; + /** * @return boolean */ @@ -155,23 +156,35 @@ public function getTemplate($key) return null; } + /** + * Get level of errors in whitch nice view is presented + * @return int + */ + public function getDisplayableErrorLevels() + { + return $this->displayableerrorlevels; + } + + public function setDisplayableErrorLevels($value) + { + $this->displayableerrorlevels = (int)$value; + } + /** * This is here just for BC and has no effect * @param mixed $value */ - public function setPriority($value) { + public function setPriority($value) + { // this is here just for BC and has no effect } - /** - * Get level of errors in whitch nice view is presented - * @return int + * This is here just for BC and has no effect + * @param mixed $value */ - public function getDisplayableErrorLevels() { - return $this->displayableerrorlevels; + public function setZendDbAdapter($value) + { + // this is here just for BC and has no effect } - public function setDisplayableErrorLevels($value) { - $this->displayableerrorlevels = (int)$value; - } -} \ No newline at end of file +}