我现在正在使用 Laravel 5.1。
命令生成的迁移类文件php artisan make:migration create_users_table --create=users
如下所示:
<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateUsersTable extends Migration
{
// up and down ...
}
当我编辑这个迁移类文件并保存它时,我的崇高文本中的 PHP Code Sniffer 会指出一条非标准消息'Each Class must be in a namespace of at least one level'。
我在 [ https://laravel.com/docs/5.1/migrations]和最高批次搜索结果中都没有得到答案。关于stackoverflow的相关问题也没有让我明白。
有谁知道原因,或者给我一些提示?谢谢!