Completed
Push — master ( 04cf1c...b0b733 )
by Kacper
03:57
created
bin/Commands/Benchmark/AnalyzeCommand.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -16,9 +16,7 @@
 block discarded – undo
16 16
 namespace Kadet\Highlighter\bin\Commands\Benchmark;
17 17
 
18 18
 
19
-use Kadet\Highlighter\Formatter\FormatterInterface;
20 19
 use Kadet\Highlighter\KeyLighter;
21
-use Kadet\Highlighter\Language\Language;
22 20
 use Symfony\Component\Console\Command\Command;
23 21
 use Symfony\Component\Console\Helper\Table;
24 22
 use Symfony\Component\Console\Helper\TableCell;
Please login to merge, or discard this patch.
bin/Commands/Benchmark/RunCommand.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -110,6 +110,9 @@  discard block
 block discarded – undo
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
 block discarded – undo
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);
Please login to merge, or discard this patch.