Skip to content

Commit 4b93841

Browse files
authored
[console] Tag 1.0.0-rc20 release. (#165)
1 parent 40d3484 commit 4b93841

40 files changed

Lines changed: 124 additions & 77 deletions

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
},
3838
"require": {
3939
"php": "^5.5.9 || ^7.0",
40-
"drupal/console-en" : "1.0.0-rc19",
40+
"drupal/console-en" : "1.0.0-rc20",
4141
"dflydev/dot-access-configuration": "1.0.1",
4242
"stecman/symfony-console-completion": "~0.7",
4343
"symfony/console": ">=2.7 <3.0",

composer.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Application.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ private function registerCommandsFromAutoWireConfiguration()
295295
$autoWireForcedCommands = $configuration
296296
->get('application.autowire.commands.forced');
297297

298-
if(!is_array($autoWireForcedCommands)){
298+
if (!is_array($autoWireForcedCommands)) {
299299
return;
300300
}
301301

src/Bootstrap/DrupalConsoleCore.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313

1414
/**
1515
* Class DrupalConsoleCore
16+
*
1617
* @package Drupal\Console\Core\Bootstrap
1718
*/
1819
class DrupalConsoleCore
@@ -29,6 +30,7 @@ class DrupalConsoleCore
2930

3031
/**
3132
* DrupalConsole constructor.
33+
*
3234
* @param $root
3335
* @param $appRoot
3436
*/

src/Command/Chain/ChainDebugCommand.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616

1717
/**
1818
* Class ChainDebugCommand
19+
*
1920
* @package Drupal\Console\Core\Command\Chain
2021
*/
2122
class ChainDebugCommand extends Command

src/Command/CheckCommand.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818

1919
/**
2020
* Class CheckCommand
21+
*
2122
* @package Drupal\Console\Core\Command
2223
*/
2324
class CheckCommand extends BaseCommand
@@ -41,6 +42,7 @@ class CheckCommand extends BaseCommand
4142

4243
/**
4344
* CheckCommand constructor.
45+
*
4446
* @param RequirementChecker $requirementChecker
4547
* @param ChainQueue $chainQueue
4648
* @param ConfigurationManager $configurationManager

src/Command/Exclude/DrupliconCommand.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717

1818
/**
1919
* Class DrupliconCommand
20+
*
2021
* @package Drupal\Console\Core\Command\Exclude
2122
*/
2223
class DrupliconCommand extends Command
@@ -34,6 +35,7 @@ class DrupliconCommand extends Command
3435

3536
/**
3637
* DrupliconCommand constructor.
38+
*
3739
* @param string $appRoot
3840
* @param TwigRenderer $renderer
3941
*/

src/Command/Exclude/DrushCommand.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818

1919
/**
2020
* Class DrushCommand
21+
*
2122
* @package Drupal\Console\Core\Command\Exclude
2223
*/
2324
class DrushCommand extends Command
@@ -36,6 +37,7 @@ class DrushCommand extends Command
3637

3738
/**
3839
* DrushCommand constructor.
40+
*
3941
* @param ConfigurationManager $configurationManager
4042
* @param ChainQueue $chainQueue
4143
*/

src/Command/Exclude/ElephpantCommand.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717

1818
/**
1919
* Class ElephpantCommand
20+
*
2021
* @package Drupal\Console\Core\Command\Exclude
2122
*/
2223
class ElephpantCommand extends Command
@@ -35,6 +36,7 @@ class ElephpantCommand extends Command
3536

3637
/**
3738
* DrupliconCommand constructor.
39+
*
3840
* @param string $appRoot
3941
* @param TwigRenderer $renderer
4042
*/

src/Command/Exec/ExecCommand.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919

2020
/**
2121
* Class ExecCommand
22+
*
2223
* @package Drupal\Console\Core\Command\Exec
2324
*/
2425
class ExecCommand extends Command
@@ -32,6 +33,7 @@ class ExecCommand extends Command
3233

3334
/**
3435
* ExecCommand constructor.
36+
*
3537
* @param ShellProcess $shellProcess
3638
*/
3739
public function __construct(ShellProcess $shellProcess)

0 commit comments

Comments
 (0)