Completed
Push — dependabot/composer/react/http... ( b64bbc )
by
unknown
20:11 queued 10:21
created
src/Markup/SyntaxHighlighterTrait.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
         // Exception thrown when language not supported
64 64
         catch (\DomainException $exception)
65 65
         {
66
-            trigger_error("An unsupported language (${langDef['language']}) was detected in a code block", E_USER_WARNING);
66
+            trigger_error("An unsupported language (${langdef['language']}) was detected in a code block", E_USER_WARNING);
67 67
         }
68 68
         catch (\Exception $e)
69 69
         {
Please login to merge, or discard this patch.
src/Document/CollectableItemTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
     /**
46 46
      * {@inheritdoc}
47 47
      */
48
-    public function saveParentPageView(DynamicPageView &$pageView)
48
+    public function saveParentPageView(DynamicPageView & $pageView)
49 49
     {
50 50
         $this->parentPageViews[] = &$pageView;
51 51
     }
Please login to merge, or discard this patch.
src/Document/DynamicPageView.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
     /**
36 36
      * Add a CollectableItem for this PageView to handle.
37 37
      */
38
-    public function addCollectableItem(CollectableItem &$collectable)
38
+    public function addCollectableItem(CollectableItem & $collectable)
39 39
     {
40 40
         $this->collectableItems[$collectable->getRelativeFilePath()] = &$collectable;
41 41
         $collectable->saveParentPageView($this);
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
     /**
45 45
      * Delete a CollectableItem from this PageView.
46 46
      */
47
-    public function delCollectableItem(CollectableItem &$collectableItem)
47
+    public function delCollectableItem(CollectableItem & $collectableItem)
48 48
     {
49 49
         unset($this->collectableItems[$collectableItem->getRelativeFilePath()]);
50 50
     }
Please login to merge, or discard this patch.
src/Document/JailedDocument.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
      * @param array                 $whiteListFunctions a list of function names that can be called
34 34
      * @param array                 $jailedFunctions    a list of functions that will be redirected to another function
35 35
      */
36
-    public function __construct(TemplateReadyDocument &$object, array $whiteListFunctions, array $jailedFunctions = [])
36
+    public function __construct(TemplateReadyDocument & $object, array $whiteListFunctions, array $jailedFunctions = [])
37 37
     {
38 38
         $this->object = &$object;
39 39
         $this->whiteListFunctions = $whiteListFunctions;
Please login to merge, or discard this patch.
src/Document/CollectableItem.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
      *
46 46
      * @return void
47 47
      */
48
-    public function saveParentPageView(DynamicPageView &$pageView);
48
+    public function saveParentPageView(DynamicPageView & $pageView);
49 49
 
50 50
     /**
51 51
      * Evaluate the FrontMatter in this object by merging a custom array of data.
Please login to merge, or discard this patch.
src/Filesystem/FileExplorer.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -203,7 +203,8 @@
 block discarded – undo
203 203
             }
204 204
 
205 205
             if (strpos($haystack, $query, $offset) !== false)
206
-            { // stop on first true result
206
+            {
207
+// stop on first true result
207 208
                 return true;
208 209
             }
209 210
         }
Please login to merge, or discard this patch.
src/Filesystem/FileExplorerMatcher.php 1 patch
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,10 +20,12 @@
 block discarded – undo
20 20
      */
21 21
     public static function modifiedAfter(\DateTime $time)
22 22
     {
23
-        return function ($file) use ($time) {
23
+        return function ($file) use ($time)
24
+        {
24 25
             /** @var File|Folder $file */
25 26
 
26
-            if ($file instanceof Folder) {
27
+            if ($file instanceof Folder)
28
+            {
27 29
                 return true;
28 30
             }
29 31
 
Please login to merge, or discard this patch.
src/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.
src/Manager/DataManager.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,8 @@
 block discarded – undo
63 63
      */
64 64
     public function getJailedDataItems()
65 65
     {
66
-        return self::getJailedTrackedItems($this->trackedItemsFlattened, function (DataItem $dataItem) {
66
+        return self::getJailedTrackedItems($this->trackedItemsFlattened, function (DataItem $dataItem)
67
+        {
67 68
             return $dataItem->getBasename();
68 69
         });
69 70
     }
Please login to merge, or discard this patch.