Completed
Push — master ( 64a4b8...c51ac3 )
by Oscar
17s queued 11s
created
src/Extractors/VueJs.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -142,7 +142,7 @@
 block discarded – undo
142 142
      * Extracts script tag contents using regex instead of DOM operations.
143 143
      * If we parse using DOM, some contents may change, for example, tags within strings will be stripped
144 144
      *
145
-     * @param $string
145
+     * @param string $string
146 146
      * @return bool|string
147 147
      */
148 148
     protected static function extractScriptTag($string)
Please login to merge, or discard this patch.
src/Generators/Xliff.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -92,6 +92,9 @@
 block discarded – undo
92 92
         return $dom->saveXML();
93 93
     }
94 94
 
95
+    /**
96
+     * @param string $name
97
+     */
95 98
     protected static function createTextNode(DOMDocument $dom, $name, $string)
96 99
     {
97 100
         $node = $dom->createElement($name);
Please login to merge, or discard this patch.