@@ -175,12 +175,12 @@ discard block |
||
| 175 | 175 | } |
| 176 | 176 | } |
| 177 | 177 | |
| 178 | - protected function addFileToTracker(File &$file) |
|
| 178 | + protected function addFileToTracker(File & $file) |
|
| 179 | 179 | { |
| 180 | 180 | $this->trackedItemsFlattened[$file->getRelativeFilePath()] = &$file; |
| 181 | 181 | } |
| 182 | 182 | |
| 183 | - protected function delFileFromTracker(File &$file) |
|
| 183 | + protected function delFileFromTracker(File & $file) |
|
| 184 | 184 | { |
| 185 | 185 | unset($this->trackedItemsFlattened[$file->getRelativeFilePath()]); |
| 186 | 186 | } |
@@ -191,7 +191,7 @@ discard block |
||
| 191 | 191 | * @param ReadableDocument $trackedItem |
| 192 | 192 | * @param string|null $namespace |
| 193 | 193 | */ |
| 194 | - protected function addObjectToTracker(ReadableDocument &$trackedItem, $namespace = null) |
|
| 194 | + protected function addObjectToTracker(ReadableDocument & $trackedItem, $namespace = null) |
|
| 195 | 195 | { |
| 196 | 196 | if ($namespace == null) |
| 197 | 197 | { |
@@ -211,7 +211,7 @@ discard block |
||
| 211 | 211 | * @param ReadableDocument $trackedItem |
| 212 | 212 | * @param string|null $namespace |
| 213 | 213 | */ |
| 214 | - protected function delObjectFromTracker(ReadableDocument &$trackedItem, $namespace = null) |
|
| 214 | + protected function delObjectFromTracker(ReadableDocument & $trackedItem, $namespace = null) |
|
| 215 | 215 | { |
| 216 | 216 | if ($namespace == null) |
| 217 | 217 | { |