服务提供程序上的语法错误

时间:2014-11-11 12:22:25

标签: laravel syntax-error service-provider

我不明白为什么,但我无法摆脱"语法错误,意外' ::' (T_PAAMAYIM_NEKUDOTAYIM)"设置服务提供商后。有没有人知道为什么会发生这种情况?

我的服务提供商:

namespace Repositories;
use Illuminate\Support\ServiceProvider;
class MainPageServiceProvider extends ServiceProvider {

  public function register()
  {
  $this->app::bind('MainPageInterface', 'MainPagesRepository');
  }

}

1 个答案:

答案 0 :(得分:0)

应该是:

$this->app->bind('MainPageInterface', 'MainPagesRepository');

\App::bind('MainPageInterface', 'MainPagesRepository');