We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -66,7 +66,7 @@ |
||
| 66 | 66 | } |
| 67 | 67 | |
| 68 | 68 | // Steps for X pages backward / forward. Double page view uses double steps. |
| 69 | - $basePageSteps = $this->settings['pageStep'] ?: 10; |
|
| 69 | + $basePageSteps = $this->settings['pageStep'] ? : 10; |
|
| 70 | 70 | $pageSteps = $basePageSteps * ($this->requestData['double'] + 1); |
| 71 | 71 | |
| 72 | 72 | $this->view->assign('basePageSteps', $basePageSteps); |
@@ -52,7 +52,7 @@ |
||
| 52 | 52 | * |
| 53 | 53 | * @return void |
| 54 | 54 | */ |
| 55 | - // TODO(client-side) |
|
| 55 | + // TODO(client-side) |
|
| 56 | 56 | public function annotationtool() |
| 57 | 57 | { |
| 58 | 58 | if ( |
@@ -299,7 +299,8 @@ |
||
| 299 | 299 | // Collect IDs of all logical structures. This is a flattened tree, so the |
| 300 | 300 | // order also works for rootline configurations. |
| 301 | 301 | $allIds = []; |
| 302 | - function getIds($toc, &$output) { |
|
| 302 | + function getIds($toc, &$output) |
|
| 303 | + { |
|
| 303 | 304 | foreach ($toc as $entry) { |
| 304 | 305 | $output[$entry['id']] = true; |
| 305 | 306 | if (is_array($entry['children'])) { |
@@ -24,7 +24,7 @@ |
||
| 24 | 24 | */ |
| 25 | 25 | class DocumentController extends AbstractController |
| 26 | 26 | { |
| 27 | - /** |
|
| 27 | + /** |
|
| 28 | 28 | * The main method of the PlugIn |
| 29 | 29 | * |
| 30 | 30 | * @access public |
@@ -135,7 +135,7 @@ |
||
| 135 | 135 | // page: \d+ |
| 136 | 136 | // double: 0|1 |
| 137 | 137 | |
| 138 | - $make = function ($page, $double, $pagegrid) { |
|
| 138 | + $make = function($page, $double, $pagegrid) { |
|
| 139 | 139 | $result = $this->uriBuilder->reset() |
| 140 | 140 | ->setTargetPageUid($GLOBALS['TSFE']->id) |
| 141 | 141 | ->setCreateAbsoluteUri(!empty($this->settings['forceAbsoluteUrl']) ? true : false) |
@@ -135,7 +135,8 @@ |
||
| 135 | 135 | // page: \d+ |
| 136 | 136 | // double: 0|1 |
| 137 | 137 | |
| 138 | - $make = function ($page, $double, $pagegrid) { |
|
| 138 | + $make = function ($page, $double, $pagegrid) |
|
| 139 | + { |
|
| 139 | 140 | $result = $this->uriBuilder->reset() |
| 140 | 141 | ->setTargetPageUid($GLOBALS['TSFE']->id) |
| 141 | 142 | ->setCreateAbsoluteUri(!empty($this->settings['forceAbsoluteUrl']) ? true : false) |