我不明白为什么,但我无法摆脱"语法错误,意外' ::' (T_PAAMAYIM_NEKUDOTAYIM)"设置服务提供商后。有没有人知道为什么会发生这种情况?
我的服务提供商:
namespace Repositories;
use Illuminate\Support\ServiceProvider;
class MainPageServiceProvider extends ServiceProvider {
public function register()
{
$this->app::bind('MainPageInterface', 'MainPagesRepository');
}
}
答案 0 :(得分:0)
应该是:
$this->app->bind('MainPageInterface', 'MainPagesRepository');
或
\App::bind('MainPageInterface', 'MainPagesRepository');