From ee88eed865beee1fafe8af525adb8e14e05a1066 Mon Sep 17 00:00:00 2001 From: Mior Muhammad Zaki Date: Sun, 15 Dec 2019 20:37:46 +0800 Subject: [PATCH] Prepare 4.1.0 release. Signed-off-by: Mior Muhammad Zaki --- CHANGELOG-4.x.md | 8 ++++++++ src/Console/ConfigureMailCommand.php | 1 + tests/Feature/Console/ConfigureMailCommandTest.php | 2 -- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG-4.x.md b/CHANGELOG-4.x.md index 6cbbc8a..9c48bc8 100644 --- a/CHANGELOG-4.x.md +++ b/CHANGELOG-4.x.md @@ -2,6 +2,14 @@ This changelog references the relevant changes (bug and security fixes) done to `orchestra/installer`. +## 4.1.0 + +Released: 2019-12-15 + +### Added + +* Added `orchestra:configure-email` artisan command to allow reconfigurate e-mail configuration using Laravel default configuration and custom sender information (email and name). + ## 4.0.0 Released: 2019-09-14 diff --git a/src/Console/ConfigureMailCommand.php b/src/Console/ConfigureMailCommand.php index 4527928..fb484ad 100644 --- a/src/Console/ConfigureMailCommand.php +++ b/src/Console/ConfigureMailCommand.php @@ -19,6 +19,7 @@ class ConfigureMailCommand extends Command * Handle the command. * * @param \Orchestra\Contracts\Foundation\Foundation $foundation + * * @return int */ public function handle(Foundation $foundation) diff --git a/tests/Feature/Console/ConfigureMailCommandTest.php b/tests/Feature/Console/ConfigureMailCommandTest.php index 0e36b05..4daba1c 100644 --- a/tests/Feature/Console/ConfigureMailCommandTest.php +++ b/tests/Feature/Console/ConfigureMailCommandTest.php @@ -5,7 +5,6 @@ use Mockery as m; use Orchestra\Contracts\Foundation\Foundation; use Orchestra\Contracts\Memory\Provider as MemoryProvider; -use Orchestra\Installation\Tests\Feature\TestCase; class ConfigureMailCommandTest extends TestCase { @@ -22,7 +21,6 @@ public function it_cant_sync_configuration_when_orchestra_is_not_installed() ->assertExitCode(1); } - /** @test */ public function it_cant_sync_configuration_when_orchestra_is_installed() {