我第一次尝试在 Laravel 中使用 psr-4 自动加载。在我用模型完成之后,我有以下雄辩的模型:
<?php namespace Models\Series;
class Player extends \BaseModel {}
它工作正常,但如果我添加这样的集合:
public static function listing()
{
return Player::paginate(15);
}
然后我收到此错误:
Cannot redeclare class Models\Series\Player
我也尝试用 替换Player::paginate(15)
,self::paginate(15)
但无济于事。