Passed
Pull Request — master (#131)
by
unknown
11:59
created
src/Drivers/Mailgun.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
 {
10 10
     public function register()
11 11
     {
12
-        Route::prefix(config('mailbox.path'))->group(function () {
12
+        Route::prefix(config('mailbox.path'))->group(function() {
13 13
             Route::post('/mailgun/mime', MailgunController::class);
14 14
         });
15 15
     }
Please login to merge, or discard this patch.
src/Console/CleanEmails.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
 
38 38
         $modelClass::where('created_at', '<', $cutOffDate)
39 39
             ->select('id')
40
-            ->chunk(100, function ($models) use ($modelClass) {
40
+            ->chunk(100, function($models) use ($modelClass) {
41 41
                 foreach ($models as $model) {
42 42
                     $modelInstance = $modelClass::find($model->id);
43 43
                     $modelInstance->delete();
Please login to merge, or discard this patch.