Skip to content

Commit b566630

Browse files
committed
Merge branch 'feature/api-permissions' of https://github.com/Pterodactyl/Panel into feature/api-permissions
2 parents e0fb7fa + 8e8147c commit b566630

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

database/migrations/2018_01_13_142012_SetupTableForKeyEncryption.php

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

3-
use Illuminate\Support\Facades\Crypt;
43
use Illuminate\Support\Facades\DB;
4+
use Illuminate\Support\Facades\Crypt;
55
use Illuminate\Support\Facades\Schema;
66
use Illuminate\Database\Schema\Blueprint;
77
use Illuminate\Database\Migrations\Migration;
@@ -45,7 +45,7 @@ public function up()
4545
*/
4646
public function down()
4747
{
48-
/** @var \Pterodactyl\Models\APIKey $key */
48+
/* @var \Pterodactyl\Models\APIKey $key */
4949
DB::transaction(function () {
5050
foreach (DB::table('api_keys')->cursor() as $key) {
5151
DB::table('api_keys')->where('id', $key->id)->update([

0 commit comments

Comments
 (0)