尝试在修补程序上创建用户时,我发现了此错误。
我之前从未使用过修补匠,所以我不知道该怎么做。
$ artisan tinker
Psy Shell v0.6.1 (PHP 5.5.29 — cli) by Justin Hileman
>>> $user = new User;
PHP Fatal error: Class 'User' not found in eval()'d code on line 1
之前的任何一个人。
更新: 注意:我使用 artisan 作为 php artisan的别名
答案 0 :(得分:3)
您需要确保在Tinker中包含您的命名空间。
例如
public void onFault(MessageContext msgContext)
$user = new App\User();
是名称空间