Completed
Push — master ( a20241...2c1d12 )
by Oscar
13s queued 10s
created
src/Generators/Xliff.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -76,6 +76,9 @@
 block discarded – undo
76 76
         return $dom->saveXML();
77 77
     }
78 78
 
79
+    /**
80
+     * @param string $name
81
+     */
79 82
     private static function createTextNode(DOMDocument $dom, $name, $string)
80 83
     {
81 84
         $node = $dom->createElement($name);
Please login to merge, or discard this patch.
src/Extractors/VueJs.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@
 block discarded – undo
73 73
      * Extracts script tag contents using regex instead of DOM operations.
74 74
      * If we parse using DOM, some contents may change, for example, tags within strings will be stripped
75 75
      *
76
-     * @param $string
76
+     * @param string $string
77 77
      * @return bool|string
78 78
      */
79 79
     private static function extractScriptTag($string)
Please login to merge, or discard this patch.