Completed
Push — master ( 562cfa...f8b2ff )
by Kacper
02:42 queued 25s
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.
Parser/TokenFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
     /**
32 32
      * TokenFactory constructor.
33 33
      *
34
-     * @param $class
34
+     * @param string $class
35 35
      */
36 36
     public function __construct($class, $type = 0x3) {
37 37
         $this->_class = $class;
Please login to merge, or discard this patch.