Skip to content

Commit ddba6ea

Browse files
authored
fix: return types (#140)
closes #128
1 parent 7bb0615 commit ddba6ea

20 files changed

+196
-564
lines changed

config/cloudinary.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
*/
2222
'notification_url' => env('CLOUDINARY_NOTIFICATION_URL'),
2323

24-
2524
/*
2625
|--------------------------------------------------------------------------
2726
| Cloudinary Configuration
@@ -36,7 +35,6 @@
3635

3736
/**
3837
* Upload Preset From Cloudinary Dashboard
39-
*
4038
*/
4139
'upload_preset' => env('CLOUDINARY_UPLOAD_PRESET'),
4240

database/migrations/2020_06_14_000001_create_media_table.php

Lines changed: 2 additions & 4 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 CreateMediaTable extends Migration
88
{
@@ -21,8 +21,6 @@ public function up(): void
2121

2222
/**
2323
* Reverse the migrations.
24-
*
25-
* @return void
2624
*/
2725
public function down(): void
2826
{

0 commit comments

Comments
 (0)