diff --git a/config/newsletter.php b/config/newsletter.php
index 5b1ea81e..474c3035 100644
--- a/config/newsletter.php
+++ b/config/newsletter.php
@@ -11,7 +11,7 @@
*/
'driver' => env('NEWSLETTER_DRIVER', null),
- /**
+ /*
* These arguments will be given to the driver.
*/
'driver_arguments' => [
diff --git a/icons.html b/icons.html
index 5712a3eb..9770d8aa 100644
--- a/icons.html
+++ b/icons.html
@@ -9,7 +9,7 @@
brands/solid/youtube
diff --git a/src/CommonMark/Extensions/Image/TwitterRenderer.php b/src/CommonMark/Extensions/Image/TwitterRenderer.php
index 4a2a0a3e..6337804c 100644
--- a/src/CommonMark/Extensions/Image/TwitterRenderer.php
+++ b/src/CommonMark/Extensions/Image/TwitterRenderer.php
@@ -59,7 +59,7 @@ private static function getEmbed(string $url, bool $dark = false): ?string
}
return Cache::rememberForever($key, function () use ($url, $dark) {
- $html = null;
+ $html = null;
$properties = [
'url' => $url,
'hide_thread' => 1,
diff --git a/src/Fortify/Actions/SubscribeToNewsletter.php b/src/Fortify/Actions/SubscribeToNewsletter.php
index ee21cd43..281d1b97 100644
--- a/src/Fortify/Actions/SubscribeToNewsletter.php
+++ b/src/Fortify/Actions/SubscribeToNewsletter.php
@@ -14,7 +14,7 @@ public static function execute(?string $email, string $list): bool
{
Validator::make([
'email' => $email,
- 'list' => $list,
+ 'list' => $list,
], [
'email' => ['required', 'email'],
'list' => ['required', 'string', Rule::in(array_keys(config('newsletter.lists')))],
diff --git a/tests/Fortify/Components/FooterEmailSubscriptionFormTest.php b/tests/Fortify/Components/FooterEmailSubscriptionFormTest.php
index 1e688ce3..306de0e6 100644
--- a/tests/Fortify/Components/FooterEmailSubscriptionFormTest.php
+++ b/tests/Fortify/Components/FooterEmailSubscriptionFormTest.php
@@ -8,7 +8,6 @@
use Illuminate\Support\Facades\Config;
use Livewire\Livewire;
use Spatie\Newsletter\Facades\Newsletter;
-
use function Tests\createUserModel;
it('can render form', function () {