Failed Conditions
Push — master ( 5433f0...117895 )
by Alexander
01:52
created
src/JiraCLI/Command/AbstractCommand.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
 	 *
68 68
 	 * @param string $issue_key Issue key.
69 69
 	 *
70
-	 * @return boolean
70
+	 * @return integer
71 71
 	 */
72 72
 	public function isValidIssueKey($issue_key)
73 73
 	{
Please login to merge, or discard this patch.
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -11,11 +11,11 @@
 block discarded – undo
11 11
 namespace ConsoleHelpers\JiraCLI\Command;
12 12
 
13 13
 
14
-use chobie\Jira\Api;
15
-use chobie\Jira\Api\Result;
16
-use ConsoleHelpers\ConsoleKit\Config\ConfigEditor;
17 14
 use ConsoleHelpers\ConsoleKit\Command\AbstractCommand as BaseCommand;
15
+use ConsoleHelpers\ConsoleKit\Config\ConfigEditor;
18 16
 use Stecman\Component\Symfony\Console\BashCompletion\CompletionContext;
17
+use chobie\Jira\Api;
18
+use chobie\Jira\Api\Result;
19 19
 
20 20
 /**
21 21
  * Base command class.
Please login to merge, or discard this patch.
src/JiraCLI/Command/ChangeLogCloneCommand.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,8 +11,6 @@  discard block
 block discarded – undo
11 11
 namespace ConsoleHelpers\JiraCLI\Command;
12 12
 
13 13
 
14
-use chobie\Jira\Api;
15
-use chobie\Jira\Issue;
16 14
 use ConsoleHelpers\ConsoleKit\Exception\CommandException;
17 15
 use ConsoleHelpers\JiraCLI\Issue\ChangeLogIssueCloner;
18 16
 use Stecman\Component\Symfony\Console\BashCompletion\CompletionContext;
@@ -20,6 +18,8 @@  discard block
 block discarded – undo
20 18
 use Symfony\Component\Console\Input\InputInterface;
21 19
 use Symfony\Component\Console\Input\InputOption;
22 20
 use Symfony\Component\Console\Output\OutputInterface;
21
+use chobie\Jira\Api;
22
+use chobie\Jira\Issue;
23 23
 
24 24
 class ChangeLogCloneCommand extends AbstractCommand
25 25
 {
Please login to merge, or discard this patch.