GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — 1.0 ( 919941 )
by Christoph
03:36
created
src/HtmlPageCrawler.php 1 patch
Doc Comments   +8 added lines, -5 removed lines patch added patch discarded remove patch
@@ -207,7 +207,7 @@  discard block
 block discarded – undo
207 207
     /**
208 208
      * Insert HTML content as child nodes of each element after existing children
209 209
      *
210
-     * @param string|HtmlPageCrawler|\DOMNode|\DOMNodeList $content HTML code fragment or DOMNode to append
210
+     * @param HtmlPageCrawler $content HTML code fragment or DOMNode to append
211 211
      * @return HtmlPageCrawler $this for chaining
212 212
      */
213 213
     public function append($content)
@@ -238,7 +238,7 @@  discard block
 block discarded – undo
238 238
     /**
239 239
      * Insert HTML content as child nodes of each element before existing children
240 240
      *
241
-     * @param string|HtmlPageCrawler|\DOMNode|\DOMNodeList $content HTML code fragment
241
+     * @param HtmlPageCrawler $content HTML code fragment
242 242
      * @return HtmlPageCrawler $this for chaining
243 243
      */
244 244
     public function prepend($content)
@@ -273,7 +273,7 @@  discard block
 block discarded – undo
273 273
     /**
274 274
      * Insert content, specified by the parameter, before each element in the set of matched elements.
275 275
      *
276
-     * @param string|HtmlPageCrawler|\DOMNode|\DOMNodeList $content
276
+     * @param HtmlPageCrawler $content
277 277
      * @return HtmlPageCrawler $this for chaining
278 278
      */
279 279
     public function before($content)
@@ -303,7 +303,7 @@  discard block
 block discarded – undo
303 303
     /**
304 304
      * Insert content, specified by the parameter, after each element in the set of matched elements.
305 305
      *
306
-     * @param string|HtmlPageCrawler|\DOMNode|\DOMNodeList $content
306
+     * @param HtmlPageCrawler $content
307 307
      * @return HtmlPageCrawler $this for chaining
308 308
      */
309 309
     public function after($content)
@@ -627,6 +627,9 @@  discard block
 block discarded – undo
627 627
         }
628 628
     }
629 629
 
630
+    /**
631
+     * @param string $content
632
+     */
630 633
     public function addHtmlFragment($content, $charset = 'UTF-8')
631 634
     {
632 635
         $d = new \DOMDocument('1.0', $charset);
@@ -798,7 +801,7 @@  discard block
 block discarded – undo
798 801
     /**
799 802
      * Replace each element in the set of matched elements with the provided new content and return the set of elements that was removed.
800 803
      *
801
-     * @param string|HtmlPageCrawler|\DOMNode|\DOMNodeList $content
804
+     * @param HtmlPageCrawler $content
802 805
      * @return \Wa72\HtmlPageDom\HtmlPageCrawler $this for chaining
803 806
      */
804 807
     public function replaceWith($content)
Please login to merge, or discard this patch.