Skip to content

Commit 83f7fbe

Browse files
committed
first round of cleanup
1 parent cc8ca1a commit 83f7fbe

14 files changed

+255
-242
lines changed

database/migrations/2020_06_14_000001_create_media_table.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
class CreateMediaTable extends Migration
88
{
9-
public function up()
9+
public function up(): void
1010
{
1111
Schema::create('media', function (Blueprint $table) {
1212
$table->bigIncrements('id');
@@ -24,7 +24,7 @@ public function up()
2424
*
2525
* @return void
2626
*/
27-
public function down()
27+
public function down(): void
2828
{
2929
Schema::dropIfExists('media');
3030
}

0 commit comments

Comments
 (0)