Failed Conditions
Push — master ( 2cd9b5...479acf )
by Alexander
01:46
created
src/JiraCLI/Command/ChangeLogCloneCommand.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,6 @@  discard block
 block discarded – undo
11 11
 namespace ConsoleHelpers\JiraCLI\Command;
12 12
 
13 13
 
14
-use chobie\Jira\Issue;
15 14
 use ConsoleHelpers\ConsoleKit\Exception\CommandException;
16 15
 use ConsoleHelpers\JiraCLI\Issue\ChangeLogIssueCloner;
17 16
 use ConsoleHelpers\JiraCLI\JiraApi;
@@ -20,6 +19,7 @@  discard block
 block discarded – undo
20 19
 use Symfony\Component\Console\Input\InputInterface;
21 20
 use Symfony\Component\Console\Input\InputOption;
22 21
 use Symfony\Component\Console\Output\OutputInterface;
22
+use chobie\Jira\Issue;
23 23
 
24 24
 class ChangeLogCloneCommand extends AbstractCommand
25 25
 {
Please login to merge, or discard this patch.
src/JiraCLI/Issue/IssueCloner.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -279,7 +279,7 @@
 block discarded – undo
279 279
 	/**
280 280
 	 * Returns ID of "Changelog Entry" issue type.
281 281
 	 *
282
-	 * @return integer
282
+	 * @return string
283 283
 	 * @throws \LogicException When "Changelog Entry" issue type wasn't found.
284 284
 	 */
285 285
 	protected function getChangelogEntryIssueTypeId()
Please login to merge, or discard this patch.
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,9 +11,9 @@
 block discarded – undo
11 11
 namespace ConsoleHelpers\JiraCLI\Issue;
12 12
 
13 13
 
14
+use ConsoleHelpers\JiraCLI\JiraApi;
14 15
 use chobie\Jira\Issue;
15 16
 use chobie\Jira\Issues\Walker;
16
-use ConsoleHelpers\JiraCLI\JiraApi;
17 17
 
18 18
 class IssueCloner
19 19
 {
Please login to merge, or discard this patch.
src/JiraCLI/JiraApi.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,10 +11,10 @@
 block discarded – undo
11 11
 namespace ConsoleHelpers\JiraCLI;
12 12
 
13 13
 
14
+use Doctrine\Common\Cache\CacheProvider;
14 15
 use chobie\Jira\Api;
15 16
 use chobie\Jira\Api\Result;
16 17
 use chobie\Jira\IssueType;
17
-use Doctrine\Common\Cache\CacheProvider;
18 18
 
19 19
 class JiraApi extends Api
20 20
 {
Please login to merge, or discard this patch.