Passed
Push — master ( 79f37b...05f929 )
by Kacper
02:54
created
Language/Language.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -164,6 +164,9 @@  discard block
 block discarded – undo
164 164
         return $result;
165 165
     }
166 166
 
167
+    /**
168
+     * @param string $source
169
+     */
167 170
     public function tokenize($source)
168 171
     {
169 172
         $iterator = new \ArrayIterator($this->_tokens($source));
@@ -182,7 +185,7 @@  discard block
 block discarded – undo
182 185
     /**
183 186
      * Language range Rule(s)
184 187
      *
185
-     * @return Rule|Rule[]
188
+     * @return Rule
186 189
      */
187 190
     public function getOpenClose()
188 191
     {
Please login to merge, or discard this patch.
KeyLighter.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
 
63 63
     /**
64 64
      * @param Language|callable|string $language
65
-     * @param $aliases
65
+     * @param string[] $aliases
66 66
      */
67 67
     public function registerLanguage($language, $aliases) {
68 68
         $this->_languages = array_merge($this->_languages, array_fill_keys($aliases, $language));
Please login to merge, or discard this patch.