| @@ -107,7 +107,9 @@ | ||
| 107 | 107 | public function all() | 
| 108 | 108 |      { | 
| 109 | 109 | $items = $this->getArrayCopy(); | 
| 110 | - if(empty($items)) return []; | |
| 110 | +        if(empty($items)) { | |
| 111 | + return []; | |
| 112 | + } | |
| 111 | 113 | |
| 112 | 114 |          return call_user_func_array('array_merge', $items); | 
| 113 | 115 | } | 
| @@ -151,7 +151,7 @@ | ||
| 151 | 151 | } | 
| 152 | 152 | |
| 153 | 153 | /** | 
| 154 | - * @return Token|null|false | |
| 154 | + * @return Token | |
| 155 | 155 | */ | 
| 156 | 156 | public function getEnd() | 
| 157 | 157 |      { | 
| @@ -226,7 +226,7 @@ | ||
| 226 | 226 | } | 
| 227 | 227 |          } elseif (($rule = Helper::cmp($b->rule->priority, $a->rule->priority)) !== 0) { | 
| 228 | 228 | return $multiplier*$rule; | 
| 229 | -        }  else { | |
| 229 | +        } else { | |
| 230 | 230 | return $multiplier*($a->id < $b->id ? -1 : 1); | 
| 231 | 231 | } | 
| 232 | 232 | } | 
| @@ -25,7 +25,7 @@ | ||
| 25 | 25 | /** | 
| 26 | 26 | * RegexMatcher constructor. | 
| 27 | 27 | * | 
| 28 | - * @param $regex | |
| 28 | + * @param string $regex | |
| 29 | 29 | * @param callable $callable | 
| 30 | 30 | */ | 
| 31 | 31 | public function __construct($regex, callable $callable) | 
| @@ -141,7 +141,7 @@ | ||
| 141 | 141 | /** | 
| 142 | 142 | * @param bool $embedded | 
| 143 | 143 | * | 
| 144 | - * @return Rule[] | |
| 144 | + * @return \Generator | |
| 145 | 145 | */ | 
| 146 | 146 | private function _rules($embedded = false) | 
| 147 | 147 |      { | 
| @@ -99,6 +99,9 @@ | ||
| 99 | 99 |              || $input->hasParameterOption('-r'); | 
| 100 | 100 | } | 
| 101 | 101 | |
| 102 | + /** | |
| 103 | + * @param string $filename | |
| 104 | + */ | |
| 102 | 105 |      private function regenerate(InputInterface $input, $filename) { | 
| 103 | 106 | $filename = str_replace(DIRECTORY_SEPARATOR, '/', $filename); | 
| 104 | 107 |          $patterns = $input->getArgument('files'); | 
| @@ -135,6 +135,9 @@ | ||
| 135 | 135 | return $this->_formatters; | 
| 136 | 136 | } | 
| 137 | 137 | |
| 138 | + /** | |
| 139 | + * @return string | |
| 140 | + */ | |
| 138 | 141 | public function highlight($source, Language $language, FormatterInterface $formatter = null) | 
| 139 | 142 |      { | 
| 140 | 143 | $formatter = $formatter ?: $this->getDefaultFormatter(); | 
| @@ -110,6 +110,9 @@ discard block | ||
| 110 | 110 | ; | 
| 111 | 111 | } | 
| 112 | 112 | |
| 113 | + /** | |
| 114 | + * @param string $source | |
| 115 | + */ | |
| 113 | 116 | protected function benchmark($source, Language $language, FormatterInterface $formatter, $geshi = null) | 
| 114 | 117 |      { | 
| 115 | 118 | gc_collect_cycles(); // force garbage collector | 
| @@ -161,6 +164,9 @@ discard block | ||
| 161 | 164 | ]; | 
| 162 | 165 | } | 
| 163 | 166 | |
| 167 | + /** | |
| 168 | + * @param string $source | |
| 169 | + */ | |
| 164 | 170 | protected function geshi($source, $language) | 
| 165 | 171 |      { | 
| 166 | 172 | $geshi = microtime(true); |