Skip to content

Commit 15a2fc2

Browse files
Add return types
1 parent b608bad commit 15a2fc2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

database/migrations/create_larapay_transaction_table.php.stub

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class CreateLarapayTransactionTable extends Migration
1010
/**
1111
* Run the migrations.
1212
*/
13-
public function up()
13+
public function up(): void
1414
{
1515
Schema::create('larapay_transactions', function (Blueprint $table) {
1616
$table->increments('id');
@@ -58,7 +58,7 @@ class CreateLarapayTransactionTable extends Migration
5858
/**
5959
* Reverse the migrations.
6060
*/
61-
public function down()
61+
public function down(): void
6262
{
6363
Schema::dropIfExists('larapay_transactions');
6464
}

0 commit comments

Comments
 (0)