Skip to content

Commit 61cb8ff

Browse files
committed
Pint
1 parent 3933276 commit 61cb8ff

File tree

3 files changed

+5
-9
lines changed

3 files changed

+5
-9
lines changed

src/Exports/Export.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
use TypiCMS\Modules\Core\Filters\FilterOr;
1515
use TypiCMS\Modules\Events\Models\Event;
1616

17-
class Export implements WithColumnFormatting, ShouldAutoSize, FromCollection, WithHeadings, WithMapping
17+
class Export implements FromCollection, ShouldAutoSize, WithColumnFormatting, WithHeadings, WithMapping
1818
{
1919
public function collection()
2020
{

src/Notifications/NewRegistrationToAnEvent.php

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ class NewRegistrationToAnEvent extends Notification
1111
use Queueable;
1212

1313
private $event;
14+
1415
private $registration;
1516

1617
/**
@@ -29,7 +30,6 @@ public function __construct($event, $registration)
2930
* Get the notification's delivery channels.
3031
*
3132
* @param mixed $notifiable
32-
*
3333
* @return array
3434
*/
3535
public function via($notifiable)
@@ -41,8 +41,7 @@ public function via($notifiable)
4141
* Get the mail representation of the notification.
4242
*
4343
* @param mixed $notifiable
44-
*
45-
* @return \Illuminate\Notifications\Messages\MailMessage
44+
* @return MailMessage
4645
*/
4746
public function toMail($notifiable)
4847
{
@@ -55,7 +54,6 @@ public function toMail($notifiable)
5554
* Get the array representation of the notification.
5655
*
5756
* @param mixed $notifiable
58-
*
5957
* @return array
6058
*/
6159
public function toArray($notifiable)

src/Notifications/RegisteredToEvent.php

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ class RegisteredToEvent extends Notification
1111
use Queueable;
1212

1313
private $event;
14+
1415
private $registration;
1516

1617
/**
@@ -29,7 +30,6 @@ public function __construct($event, $registration)
2930
* Get the notification's delivery channels.
3031
*
3132
* @param mixed $notifiable
32-
*
3333
* @return array
3434
*/
3535
public function via($notifiable)
@@ -41,8 +41,7 @@ public function via($notifiable)
4141
* Get the mail representation of the notification.
4242
*
4343
* @param mixed $notifiable
44-
*
45-
* @return \Illuminate\Notifications\Messages\MailMessage
44+
* @return MailMessage
4645
*/
4746
public function toMail($notifiable)
4847
{
@@ -55,7 +54,6 @@ public function toMail($notifiable)
5554
* Get the array representation of the notification.
5655
*
5756
* @param mixed $notifiable
58-
*
5957
* @return array
6058
*/
6159
public function toArray($notifiable)

0 commit comments

Comments
 (0)