Php Symfony\Component\Debug\Exception\FatalThrowableError Parse error: syntax error, unexpected ',' ;
Php Symfony\Component\Debug\Exception\FatalThrowableError Parse error: syntax error, unexpected ',' ;
我正在研究 Lumen,但为什么 PHP artisan 命令不起作用。
这是我的命令 运行:
~$: php artisan migrate:install
Migration table created successfully.
-$: php artisan make:migration --create=users create_users_table
[Symfony\Component\Debug\Exception\FatalThrowableError] Parse error: syntax error, unexpected ','
一定是打错了,可能是在迁移文件上。在此处或 git 上显示您的代码。像这样写 php artisan make:migration create_users_table --create=users
您的代码中的问题是由于此更改引起的 - Git Commit History
将 web.php 中的路线改回:
$app->get('/', function () use ($app) {
return $app->version();
});
我正在研究 Lumen,但为什么 PHP artisan 命令不起作用。
这是我的命令 运行:
~$: php artisan migrate:install
Migration table created successfully.
-$: php artisan make:migration --create=users create_users_table
[Symfony\Component\Debug\Exception\FatalThrowableError] Parse error: syntax error, unexpected ','
一定是打错了,可能是在迁移文件上。在此处或 git 上显示您的代码。像这样写 php artisan make:migration create_users_table --create=users
您的代码中的问题是由于此更改引起的 - Git Commit History
将 web.php 中的路线改回:
$app->get('/', function () use ($app) {
return $app->version();
});