Skip to content

Commit fd1f920

Browse files
committed
Merge branch 'main' of github.com:spatie/laravel-personal-data-export
2 parents af35da1 + b9d7f27 commit fd1f920

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

src/Jobs/CreatePersonalDataExportJob.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,10 @@
2020

2121
class CreatePersonalDataExportJob implements ShouldQueue
2222
{
23-
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
23+
use Dispatchable;
24+
use InteractsWithQueue;
25+
use Queueable;
26+
use SerializesModels;
2427

2528
protected ExportsPersonalData | Model $user;
2629

src/Notifications/PersonalDataExportedNotification.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
use Illuminate\Notifications\Messages\MailMessage;
66
use Illuminate\Notifications\Notification;
7-
use Illuminate\Support\Facades\Lang;
87

98
class PersonalDataExportedNotification extends Notification
109
{
@@ -41,7 +40,7 @@ public function toMail($notifiable)
4140
return call_user_func(static::$toMailCallback, $notifiable, $downloadUrl);
4241
}
4342

44-
return (new MailMessage)
43+
return (new MailMessage())
4544
->subject(trans('personal-data-export::notifications.subject'))
4645
->line(trans('personal-data-export::notifications.instructions'))
4746
->action(trans('personal-data-export::notifications.action'), $downloadUrl)

src/PersonalDataExportServiceProvider.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
namespace Spatie\PersonalDataExport;
44

55
use Illuminate\Support\Facades\Route;
6-
use Illuminate\Support\ServiceProvider;
76
use Spatie\LaravelPackageTools\Package;
87
use Spatie\LaravelPackageTools\PackageServiceProvider;
98
use Spatie\PersonalDataExport\Commands\CleanOldPersonalDataExportsCommand;

0 commit comments

Comments
 (0)