@@ -90,7 +90,7 @@ |
||
| 90 | 90 | |
| 91 | 91 | /** |
| 92 | 92 | * @param $section |
| 93 | - * @param null $param |
|
| 93 | + * @param string $param |
|
| 94 | 94 | * @return mixed |
| 95 | 95 | */ |
| 96 | 96 | public function get($section = null, $param = null) |
@@ -98,7 +98,7 @@ discard block |
||
| 98 | 98 | if ($section === null) { |
| 99 | 99 | return $this->config; |
| 100 | 100 | } elseif ($param === null) { |
| 101 | - return $this->config[$section]; |
|
| 101 | + return $this->config[$section]; |
|
| 102 | 102 | } |
| 103 | 103 | |
| 104 | 104 | return $this->config[$section][$param]; |
@@ -194,8 +194,8 @@ discard block |
||
| 194 | 194 | } |
| 195 | 195 | |
| 196 | 196 | /** |
| 197 | - * @return boolean |
|
| 198 | - */ |
|
| 197 | + * @return boolean |
|
| 198 | + */ |
|
| 199 | 199 | public function hasTimerRunning() |
| 200 | 200 | { |
| 201 | 201 | return $this->get('workflow', 'is_timer_running') === true; |
@@ -161,7 +161,7 @@ |
||
| 161 | 161 | |
| 162 | 162 | /** |
| 163 | 163 | * @param $service |
| 164 | - * @param null $action |
|
| 164 | + * @param string $action |
|
| 165 | 165 | * @param null $success |
| 166 | 166 | */ |
| 167 | 167 | public function setNotificationForService($service = null, $action = null, $success = null) |