Skip to content

Commit

Permalink
PASSBOLT-2638 Renamed command send_test_email
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinmuller authored and stripthis committed Jan 25, 2018
1 parent 549df09 commit fbf7f58
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/Shell/PassboltShell.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class PassboltShell extends AppShell
'PassboltTestData.Data',
'PassboltTestData.fixturize',
'RegisterUser',
'TestEmailConfig',
'SendTestEmail',
];

/**
Expand Down Expand Up @@ -105,9 +105,9 @@ public function getOptionParser()
'parser' => $this->RegisterUser->getOptionParser(),
]);

$parser->addSubcommand('test_email_config', [
$parser->addSubcommand('send_test_email', [
'help' => __d('cake_console', 'Test the email configuration by trying to send an email and display the client / server communication trace.'),
'parser' => $this->TestEmailConfig->getOptionParser(),
'parser' => $this->SendTestEmail->getOptionParser(),
]);

return $parser;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
use Cake\Mailer\Email;
use Cake\Utility\Hash;

class TestEmailConfigTask extends AppShell
class SendTestEmailTask extends AppShell
{
/**
* Name of the transport configuration that we'll use.
Expand Down

0 comments on commit fbf7f58

Please sign in to comment.