Passed
Branch master (89d7be)
by Thomas
02:11
created
src/Command/StatusCommand.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -126,7 +126,7 @@
 block discarded – undo
126 126
 
127 127
   /**
128 128
    * @param $groupId
129
-   * @return array
129
+   * @return string[]
130 130
    */
131 131
   private function getHeader($groupId) {
132 132
 
Please login to merge, or discard this patch.
src/Command/FieldsSourceCommand.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,13 +2,13 @@
 block discarded – undo
2 2
 
3 3
 namespace Drupal\migrate_console_tools\Command;
4 4
 
5
+use Drupal\Console\Command\Shared\ContainerAwareCommandTrait;
6
+use Drupal\Console\Style\DrupalStyle;
5 7
 use Drupal\migrate\Plugin\MigrationInterface;
8
+use Symfony\Component\Console\Command\Command;
6 9
 use Symfony\Component\Console\Input\InputInterface;
7 10
 use Symfony\Component\Console\Input\InputOption;
8 11
 use Symfony\Component\Console\Output\OutputInterface;
9
-use Symfony\Component\Console\Command\Command;
10
-use Drupal\Console\Command\Shared\ContainerAwareCommandTrait;
11
-use Drupal\Console\Style\DrupalStyle;
12 12
 
13 13
 /**
14 14
  * Class FieldsSourceCommand.
Please login to merge, or discard this patch.
src/Command/MigrateCommandTrait.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
 
24 24
   /**
25 25
    * @param \Symfony\Component\Console\Input\InputInterface $input
26
-   * @param array                                           $inputOptions
26
+   * @param string[]                                           $inputOptions
27 27
    * @return array
28 28
    */
29 29
   protected function buildOptionList(InputInterface $input,
@@ -65,8 +65,8 @@  discard block
 block discarded – undo
65 65
 
66 66
 
67 67
   /**
68
-   * @param        $name
69
-   * @param null   $shortcut
68
+   * @param        string $name
69
+   * @param string   $shortcut
70 70
    * @param null   $mode
71 71
    * @param string $description
72 72
    * @param null   $default
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
   abstract public function addOption($name, $shortcut = null, $mode = null, $description = '', $default = null);
78 78
 
79 79
   /**
80
-   * @param        $name
80
+   * @param        string $name
81 81
    * @param null   $mode
82 82
    * @param string $description
83 83
    * @param null   $default
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
   abstract public function addArgument($name, $mode = null, $description = '', $default = null);
89 89
 
90 90
   /**
91
-   * @param array $keys
91
+   * @param string[] $keys
92 92
    * @param array $options
93 93
    * @return bool
94 94
    *
Please login to merge, or discard this patch.