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
brands/telegram
brands/tiktok
brands/twitter
brands/weibo
brands/windows
brands/x
brands/youtube-shorts-outline
brands/youtube-shorts
brands/youtube
calendar-without-dots
calendar
cards
categories
category
chain
chart-pie
check-mark-bold
check-mark-box
check-mark-small
check-mark
circle/arrow-down
circle/check-mark-big
circle/check-mark-pencil
circle/check-mark
circle/clock-big
circle/cross-big
circle/cross
circle/exclamation-mark-big
circle/exclamation-mark
circle/forward-big
circle/forward
circle/hand-big
circle/hand
circle/info
circle/lock
circle/min
circle/open-plus-inside
circle/open-plus-outside
circle/pause-big
circle/pause
circle/play-big
circle/play
circle/plus
circle/question-mark-big
circle/question-mark
circle/search
circle/shopping-cart-pointer
circle/spinner
circle/stop-big
circle/stop
circle/update
clock-ban
clock-pencil
clock
cloud-arrow-up
cloud
code
coins-stack
connection
controller
copy-key
copy
core
credit-card
cross-small
cross
dash
developer-tools
dollar-sign
double-check-mark
-drag
ellipsis-vertical
enter
+drag
ellipsis-vertical
enter
envelope
exchanges
exclamation-mark-small
exit
explorer
eye-slash
eye
fat-arrow-right
file-coins
file-colored
file-dw
file-dwe
file-js
file-json
file-key
file-lines
file
filter
fire
flag
folder-home
forward
gear
gem
globe-line
globe-pointer
globe-wallet
globe
glossary
governance
grid-menu
grid
H1
H2
H3
H4
H5
H6
hammer
hand-point-up
hand-swipe
hand-touch
hand
hands-holding-document
hard-drive
hash
health-fitness
hint-small
id
identity
image-file-landscape
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 () {