Completed
Push — master ( 52046a...4ff8ff )
by Alexander
05:18
created
src/CodeInsight/KnowledgeBase/DataCollector/ClassDataCollector.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -89,7 +89,7 @@
 block discarded – undo
89 89
 	/**
90 90
 	 * Delete previously collected data for a files.
91 91
 	 *
92
-	 * @param array $file_ids File IDs.
92
+	 * @param integer[] $file_ids File IDs.
93 93
 	 *
94 94
 	 * @return void
95 95
 	 */
Please login to merge, or discard this patch.
src/CodeInsight/KnowledgeBase/KnowledgeBase.php 2 patches
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,9 +18,9 @@
 block discarded – undo
18 18
 use ConsoleHelpers\CodeInsight\KnowledgeBase\DataCollector\ConstantDataCollector;
19 19
 use ConsoleHelpers\CodeInsight\KnowledgeBase\DataCollector\FunctionDataCollector;
20 20
 use ConsoleHelpers\ConsoleKit\ConsoleIO;
21
+use Go\ParserReflection\LocatorInterface;
21 22
 use Go\ParserReflection\Locator\CallableLocator;
22 23
 use Go\ParserReflection\Locator\ComposerLocator;
23
-use Go\ParserReflection\LocatorInterface;
24 24
 use Go\ParserReflection\ReflectionEngine;
25 25
 use Go\ParserReflection\ReflectionFile;
26 26
 use Symfony\Component\Finder\Finder;
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -493,7 +493,7 @@
 block discarded – undo
493 493
 	 * @param string     $name    Name.
494 494
 	 * @param mixed|null $default Default value.
495 495
 	 *
496
-	 * @return mixed
496
+	 * @return string
497 497
 	 */
498 498
 	protected function getConfigSetting($name, $default = null)
499 499
 	{
Please login to merge, or discard this patch.
src/CodeInsight/Application.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,11 +13,11 @@
 block discarded – undo
13 13
 
14 14
 use ConsoleHelpers\CodeInsight\Command\BackwardsCompatibilityCommand;
15 15
 use ConsoleHelpers\CodeInsight\Command\CompletionCommand;
16
-use ConsoleHelpers\CodeInsight\Command\ReportCommand;
17 16
 use ConsoleHelpers\CodeInsight\Command\Dev\MigrationCreateCommand;
17
+use ConsoleHelpers\CodeInsight\Command\MissingTestsCommand;
18
+use ConsoleHelpers\CodeInsight\Command\ReportCommand;
18 19
 use ConsoleHelpers\CodeInsight\Command\SyncCommand;
19 20
 use ConsoleHelpers\ConsoleKit\Application as BaseApplication;
20
-use ConsoleHelpers\CodeInsight\Command\MissingTestsCommand;
21 21
 use Symfony\Component\Console\Command\Command;
22 22
 
23 23
 class Application extends BaseApplication
Please login to merge, or discard this patch.