Completed
Push — feature/anchors-twig-filter ( 539e8d )
by Vladimir
02:36
created
src/allejo/stakx/Utilities/HtmlUtils.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -9,6 +9,9 @@
 block discarded – undo
9 9
 
10 10
 abstract class HtmlUtils
11 11
 {
12
+    /**
13
+     * @param string $xpathQuery
14
+     */
12 15
     public static function htmlXPath(\DOMDocument &$DOMDocument, $html, $xpathQuery)
13 16
     {
14 17
         $html = self::normalizeHTML($html);
Please login to merge, or discard this patch.
tests/allejo/stakx/Test/PHPUnit_Stakx_TestCase.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -476,7 +476,8 @@
 block discarded – undo
476 476
 
477 477
         /** @var \ReflectionMethod $fxnToCall */
478 478
         $fxnToCall = \__::chain($fxns)
479
-            ->filter(function (\ReflectionMethod $fxn) use ($method) {
479
+            ->filter(function (\ReflectionMethod $fxn) use ($method)
480
+            {
480 481
                 return $fxn->getName() === $method;
481 482
             })
482 483
             ->get(0, null)
Please login to merge, or discard this patch.