Completed
Push — dependabot/composer/react/http... ( 1fc3de )
by
unknown
58s
created
src/allejo/stakx/Manager/TrackingManager.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -175,12 +175,12 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
         {
Please login to merge, or discard this patch.