我不明白为什么,但在设置服务提供者后,我无法摆脱“语法错误,意外'::' (T_PAAMAYIM_NEKUDOTAYIM)”。有谁知道为什么会这样?
我的服务提供商:
namespace Repositories;
use Illuminate\Support\ServiceProvider;
class MainPageServiceProvider extends ServiceProvider {
public function register()
{
$this->app::bind('MainPageInterface', 'MainPagesRepository');
}
}