@@ -16,8 +16,7 @@ discard block |
||
| 16 | 16 | $this->response->assign('div2', 'innerHTML', $text); |
| 17 | 17 | // $this->response->confirmCommands(1, 'Skip text notification?'); |
| 18 | 18 | $this->response->dialog->success("div2 text is now $text"); |
| 19 | - } |
|
| 20 | - else |
|
| 19 | + } else |
|
| 21 | 20 | { |
| 22 | 21 | // $this->response->confirmCommands(1, 'Skip text assignement?'); |
| 23 | 22 | $this->response->assign('div2', 'innerHTML', $text); |
@@ -32,8 +31,7 @@ discard block |
||
| 32 | 31 | $this->response->assign('div2', 'style.color', $sColor); |
| 33 | 32 | // $this->response->confirmCommands(1, 'Skip color assignement?'); |
| 34 | 33 | $this->response->dialog->success("div2 color is now $sColor"); |
| 35 | - } |
|
| 36 | - else |
|
| 34 | + } else |
|
| 37 | 35 | { |
| 38 | 36 | // $this->response->confirmCommands(1, 'Skip color assignement?'); |
| 39 | 37 | $this->response->assign('div2', 'style.color', $sColor); |
@@ -7,16 +7,18 @@ |
||
| 7 | 7 | $text = $isCaps ? 'HELLO WORLD!' : 'Hello World!'; |
| 8 | 8 | $xResponse = jaxon()->newResponse(); |
| 9 | 9 | $xResponse->assign('div2', 'innerHTML', $text); |
| 10 | - if(($bNotify)) |
|
| 11 | - $xResponse->dialog->success("div2 text is now $text"); |
|
| 10 | + if(($bNotify)) { |
|
| 11 | + $xResponse->dialog->success("div2 text is now $text"); |
|
| 12 | + } |
|
| 12 | 13 | } |
| 13 | 14 | |
| 14 | 15 | public function setColor(string $sColor, bool $bNotify = true) |
| 15 | 16 | { |
| 16 | 17 | $xResponse = jaxon()->newResponse(); |
| 17 | 18 | $xResponse->assign('div2', 'style.color', $sColor); |
| 18 | - if(($bNotify)) |
|
| 19 | - $xResponse->dialog->success("div2 color is now $sColor"); |
|
| 19 | + if(($bNotify)) { |
|
| 20 | + $xResponse->dialog->success("div2 color is now $sColor"); |
|
| 21 | + } |
|
| 20 | 22 | } |
| 21 | 23 | |
| 22 | 24 | public function showDialog() |
@@ -81,8 +81,7 @@ |
||
| 81 | 81 | { |
| 82 | 82 | // Recursively read the translations in the array |
| 83 | 83 | $this->_loadTranslations($sLanguage, $sKey, $xTranslation); |
| 84 | - } |
|
| 85 | - else |
|
| 84 | + } else |
|
| 86 | 85 | { |
| 87 | 86 | // Save this translation |
| 88 | 87 | $this->aTranslations[$sLanguage][$sKey] = $xTranslation; |
@@ -36,8 +36,7 @@ discard block |
||
| 36 | 36 | try |
| 37 | 37 | { |
| 38 | 38 | return file_get_contents($sPath); |
| 39 | - } |
|
| 40 | - catch(Exception $e) |
|
| 39 | + } catch(Exception $e) |
|
| 41 | 40 | { |
| 42 | 41 | return false; |
| 43 | 42 | } |
@@ -55,8 +54,7 @@ discard block |
||
| 55 | 54 | try |
| 56 | 55 | { |
| 57 | 56 | return Minifier::minify($sCode); |
| 58 | - } |
|
| 59 | - catch(Exception $e) |
|
| 57 | + } catch(Exception $e) |
|
| 60 | 58 | { |
| 61 | 59 | return false; |
| 62 | 60 | } |
@@ -232,8 +232,7 @@ |
||
| 232 | 232 | } |
| 233 | 233 | |
| 234 | 234 | return $this->xMetadata; |
| 235 | - } |
|
| 236 | - catch(AnnotationException $e) |
|
| 235 | + } catch(AnnotationException $e) |
|
| 237 | 236 | { |
| 238 | 237 | throw new SetupException($e->getMessage()); |
| 239 | 238 | } |
@@ -138,8 +138,7 @@ discard block |
||
| 138 | 138 | throw new RequestException($this->xTranslator->trans('errors.upload.access'));
|
| 139 | 139 | } |
| 140 | 140 | return $sUploadDir; |
| 141 | - } |
|
| 142 | - catch(FilesystemException $e) |
|
| 141 | + } catch(FilesystemException $e) |
|
| 143 | 142 | {
|
| 144 | 143 | $this->xLogger->error('Filesystem error.', ['message' => $e->getMessage()]);
|
| 145 | 144 | throw new RequestException($this->xTranslator->trans('errors.upload.access'));
|
@@ -238,8 +237,7 @@ discard block |
||
| 238 | 237 | {
|
| 239 | 238 | $aFiles['user']->filesystem()->write($aFiles['user']->path(), $aFiles['temp']->getStream()); |
| 240 | 239 | } |
| 241 | - } |
|
| 242 | - catch(FilesystemException $e) |
|
| 240 | + } catch(FilesystemException $e) |
|
| 243 | 241 | {
|
| 244 | 242 | $this->xLogger->error('Filesystem error.', ['message' => $e->getMessage()]);
|
| 245 | 243 | throw new RequestException($this->xTranslator->trans('errors.upload.access'));
|