mirror of
https://github.com/barryvdh/laravel-ide-helper.git
synced 2026-08-18 10:07:12 +00:00
* phpcs: enable also for config, resources and tests
* composer fix-style
* vendor/bin/phpunit -d --update-snapshots
* gha: instead of checking the style, fix and auto-commit it 💪
18 lines
361 B
PHP
18 lines
361 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
class SimpleTable extends Migration
|
|
{
|
|
public function up(): void
|
|
{
|
|
Schema::create('simples', function (Blueprint $table) {
|
|
$table->bigIncrements('id');
|
|
});
|
|
}
|
|
}
|