0

我有一堆以前运行良好的菲克斯种子

php vendor/bin/phinx seed:run

我的种子位于var/www/html/db/seeds文件夹中

我最近将我的 VM 升级到 php 7.0(也升级到 16.04 LTS 盒),现在当我尝试运行 phinx 种子时得到以下输出和错误:

ubuntu@ubuntu-xenial:/var/www/html$ sudo vendor/bin/phinx seed:run
Phinx by Rob Morgan - https://phinx.org. version 0.5.4

using config file ./phinx.yml
using config parser yaml
using migration path /var/www/html/db/migrations
using seed path /var/www/html/db/seeds
warning no environment specified, defaulting to: development
using adapter mysql
using database closecall

[InvalidArgumentException]        
The seed class "" does not exist 

重申一下,种子运行良好,升级到 php 7.0,但现在不行。

但是,迁移仍然运行良好。

我已经删除了所有种子栏之一:

<?php

use Phinx\Seed\AbstractSeed;

class CategorySeeder extends AbstractSeed
{
    public function run()
    {
        $data = array(
            array(
                'name' => 'Confined Spaces'
            )
        );
    }
}

要调试,仍然会给出相同的错误。

4

1 回答 1

0

尝试:

php vendor/bin/phinx seed:run -s CategorySeeder
于 2016-09-06T09:10:25.817 回答