Skip to content

Commit 962af99

Browse files
committed
Pint
1 parent bc9c2c2 commit 962af99

27 files changed

+104
-329
lines changed

database/migrations/2017_12_14_151403_create_emails_table.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22

3-
use Illuminate\Support\Facades\Schema;
4-
use Illuminate\Database\Schema\Blueprint;
53
use Illuminate\Database\Migrations\Migration;
4+
use Illuminate\Database\Schema\Blueprint;
5+
use Illuminate\Support\Facades\Schema;
66

77
class CreateEmailsTable extends Migration
88
{

database/migrations/2017_12_14_151421_add_attachments_to_emails_table.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22

3-
use Illuminate\Support\Facades\Schema;
4-
use Illuminate\Database\Schema\Blueprint;
53
use Illuminate\Database\Migrations\Migration;
4+
use Illuminate\Database\Schema\Blueprint;
5+
use Illuminate\Support\Facades\Schema;
66

77
class AddAttachmentsToEmailsTable extends Migration
88
{

database/migrations/2017_12_22_114011_add_from_to_emails_table.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22

3-
use Illuminate\Support\Facades\Schema;
4-
use Illuminate\Database\Schema\Blueprint;
53
use Illuminate\Database\Migrations\Migration;
4+
use Illuminate\Database\Schema\Blueprint;
5+
use Illuminate\Support\Facades\Schema;
66

77
class AddFromToEmailsTable extends Migration
88
{

database/migrations/2021_12_02_21000_add_queued_at_to_emails_table.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22

3-
use Illuminate\Support\Facades\Schema;
4-
use Illuminate\Database\Schema\Blueprint;
53
use Illuminate\Database\Migrations\Migration;
4+
use Illuminate\Database\Schema\Blueprint;
5+
use Illuminate\Support\Facades\Schema;
66

77
class AddQueuedAtToEmailsTable extends Migration
88
{

database/migrations/2023_12_28_140000_add_reply_to_to_emails_table.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22

3-
use Illuminate\Support\Facades\Schema;
4-
use Illuminate\Database\Schema\Blueprint;
53
use Illuminate\Database\Migrations\Migration;
4+
use Illuminate\Database\Schema\Blueprint;
5+
use Illuminate\Support\Facades\Schema;
66

77
class AddReplyToToEmailsTable extends Migration
88
{

src/Config.php

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ class Config
88
{
99
/**
1010
* Get the maximum number of times an e-mail may be attempted to be sent.
11-
*
12-
* @return int
1311
*/
1412
public static function maxAttemptCount(): int
1513
{
@@ -18,8 +16,6 @@ public static function maxAttemptCount(): int
1816

1917
/**
2018
* Determine if newly created e-mails should be encrypted.
21-
*
22-
* @return bool
2319
*/
2420
public static function encryptEmails(): bool
2521
{
@@ -28,8 +24,6 @@ public static function encryptEmails(): bool
2824

2925
/**
3026
* Determine if newly created e-mails should be sent to the test e-mail address.
31-
*
32-
* @return bool
3327
*/
3428
public static function testing(): bool
3529
{
@@ -38,8 +32,6 @@ public static function testing(): bool
3832

3933
/**
4034
* Get the test e-mail address.
41-
*
42-
* @return string
4335
*/
4436
public static function testEmailAddress(): string
4537
{
@@ -48,8 +40,6 @@ public static function testEmailAddress(): string
4840

4941
/**
5042
* Get the number of e-mails the cronjob may send at a time.
51-
*
52-
* @return int
5343
*/
5444
public static function cronjobEmailLimit(): int
5545
{
@@ -58,8 +48,6 @@ public static function cronjobEmailLimit(): int
5848

5949
/**
6050
* Determine if e-mails should be sent immediately.
61-
*
62-
* @return bool
6351
*/
6452
public static function sendImmediately(): bool
6553
{

0 commit comments

Comments
 (0)