Skip to content

Commit

Permalink
fix: fix php-cs-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
albertcht committed Sep 15, 2024
1 parent 0f14538 commit c3e3ea9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
2 changes: 0 additions & 2 deletions app/Providers/AppServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,9 @@ class AppServiceProvider extends ServiceProvider
{
public function boot(): void
{
//
}

public function register(): void
{
//
}
}
7 changes: 3 additions & 4 deletions database/migrations/2023_08_03_000000_create_users_table.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,11 @@

declare(strict_types=1);

use Hyperf\Database\Schema\Blueprint;
use Hyperf\Database\Migrations\Migration;
use Hyperf\Database\Schema\Blueprint;
use SwooleTW\Hyperf\Support\Facades\Schema;

return new class extends Migration
{
return new class extends Migration {
/**
* Run the migrations.
*/
Expand All @@ -30,4 +29,4 @@ public function down(): void
{
Schema::dropIfExists('users');
}
};
};

0 comments on commit c3e3ea9

Please sign in to comment.