Passed
Push — master ( 62d5c0...ecd62d )
by Timo
27s
created
src/Contract/Command/ConfiguratorInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
      * @param CommandInterface $command
25 25
      * @return bool
26 26
      */
27
-    public function accept(CommandInterface $command) : bool ;
27
+    public function accept(CommandInterface $command) : bool;
28 28
 
29 29
     /**
30 30
      * @param array $config
Please login to merge, or discard this patch.
src/Command/Configurator.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
     use ConfiguratorTrait;
25 25
 
26 26
     /**
27
-     * @param CommandInterface $command
27
+     * @param \Tidal\PhpSpec\ConsoleExtension\Contract\Command\CommandInterface $command
28 28
      * @return bool
29 29
      */
30 30
     protected function doAccept(CommandInterface $command): bool
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
     }
34 34
 
35 35
     /**
36
-     * @param CommandInterface $command
36
+     * @param \Tidal\PhpSpec\ConsoleExtension\Contract\Command\CommandInterface $command
37 37
      */
38 38
     protected function doConfigure(CommandInterface $command)
39 39
     {
Please login to merge, or discard this patch.
src/Command/GenericCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
      * @param ConfiguratorInterface $configurator
34 34
      * @param array|null $config
35 35
      */
36
-    public function __construct(WriterInterface $writer, ConfiguratorInterface $configurator, ?array $config = [])
36
+    public function __construct(WriterInterface $writer, ConfiguratorInterface $configurator, ? array $config = [])
37 37
     {
38 38
         if ($config !== null) {
39 39
             $configurator->setConfig($config);
Please login to merge, or discard this patch.
src/Command/GenericInlineConfigCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
      * @param ConfiguratorInterface $configurator
34 34
      * @param array|null $config
35 35
      */
36
-    public function __construct(WriterInterface $writer, ConfiguratorInterface $configurator, ?array $config = [])
36
+    public function __construct(WriterInterface $writer, ConfiguratorInterface $configurator, ? array $config = [])
37 37
     {
38 38
         if ($config !== null) {
39 39
             $configurator->setConfig($config);
Please login to merge, or discard this patch.