Skip to content
Snippets Groups Projects
Commit e27a7274 authored by Ted Bowman's avatar Ted Bowman
Browse files

Contrib: change permission -...

Contrib: change permission - project/automatic_updates@9caffbd6
parent dd8f23fa
No related branches found
No related tags found
No related merge requests found
...@@ -6,8 +6,8 @@ ...@@ -6,8 +6,8 @@
* Provides a terminal command for performing automatic updates. * Provides a terminal command for performing automatic updates.
*/ */
use Drupal\automatic_updates\Commands\PostApplyCommand; use Drupal\auto_updates\Commands\PostApplyCommand;
use Drupal\automatic_updates\Commands\RunCommand; use Drupal\auto_updates\Commands\RunCommand;
use Symfony\Component\Console\Application; use Symfony\Component\Console\Application;
if (PHP_SAPI !== 'cli') { if (PHP_SAPI !== 'cli') {
...@@ -38,7 +38,7 @@ if (empty($autoloader)) { ...@@ -38,7 +38,7 @@ if (empty($autoloader)) {
// a Drupal module, which means Drupal must be booted up in order to access it. // a Drupal module, which means Drupal must be booted up in order to access it.
// Since Drupal isn't booted yet, we need to make the autoloader aware of the // Since Drupal isn't booted yet, we need to make the autoloader aware of the
// command namespace. // command namespace.
$autoloader->addPsr4('Drupal\\automatic_updates\\Commands\\', __DIR__ . '/src/Commands'); $autoloader->addPsr4('Drupal\\auto_updates\\Commands\\', __DIR__ . '/src/Commands');
$application = new Application('Automatic Updates', '3.0.0'); $application = new Application('Automatic Updates', '3.0.0');
$application->add(new RunCommand($autoloader)); $application->add(new RunCommand($autoloader));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment