我在 PHP 中的名称空间方面遇到了麻烦。例如我有一个这样的文件
namespace App\Models\Abstracts;
abstract class Country{}
Run Code Online (Sandbox Code Playgroud)
然后是另一个像这样的文件
namespace App\Models;
use App\Models\Abstracts\Country;
class City extends Country{}
Run Code Online (Sandbox Code Playgroud)
我总是得到
致命错误:未捕获错误:类...未在...中找到
谁能帮我?多谢。