We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5945a9 commit 91fb667Copy full SHA for 91fb667
kernel.drush.run.inc
@@ -8,7 +8,7 @@
8
* Executes the given command in the current working directory.
9
*/
10
function drush_kernel_app_run($arguments = array()) {
11
- $c = DrupalKernelContainer::get();
+ $c = pimple_get_container('app');
12
13
// Append all the command line options (--option and -o).
14
foreach ($_SERVER['argv'] as $argument) {
@@ -70,7 +70,7 @@ function drush_kernel_app_run($arguments = array()) {
70
71
function drush_kernel_app_get_options($command = 'list') {
72
static $commands = array();
73
74
75
// Retrieve all the commands available from Composer.
76
if (empty($commands)) {
0 commit comments