We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -157,12 +157,12 @@ discard block |
||
| 157 | 157 | protected function indexLoop() { |
| 158 | 158 | |
| 159 | 159 | // Get document from list. |
| 160 | - list ($uid, ) = $this->list->remove(0); |
|
| 160 | + list ($uid,) = $this->list->remove(0); |
|
| 161 | 161 | |
| 162 | 162 | $this->list->save(); |
| 163 | 163 | |
| 164 | 164 | // Save document to database and index. |
| 165 | - $doc =& tx_dlf_document::getInstance($uid, 0, TRUE); |
|
| 165 | + $doc = & tx_dlf_document::getInstance($uid, 0, TRUE); |
|
| 166 | 166 | |
| 167 | 167 | if ($doc->ready) { |
| 168 | 168 | |
@@ -219,7 +219,7 @@ discard block |
||
| 219 | 219 | && \TYPO3\CMS\Core\Utility\GeneralUtility::isValidUrl($this->data['id'])) { |
| 220 | 220 | |
| 221 | 221 | // Save document to database and index. |
| 222 | - $doc =& tx_dlf_document::getInstance($this->data['id'], $this->id, TRUE); |
|
| 222 | + $doc = & tx_dlf_document::getInstance($this->data['id'], $this->id, TRUE); |
|
| 223 | 223 | |
| 224 | 224 | if ($doc->ready) { |
| 225 | 225 | |