0

我不明白为什么,但在设置服务提供者后,我无法摆脱“语法错误,意外'::' (T_PAAMAYIM_NEKUDOTAYIM)”。有谁知道为什么会这样?

我的服务提供商:

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

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

}
4

1 回答 1

0

它应该是:

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

或者

\App::bind('MainPageInterface', 'MainPagesRepository');
于 2014-11-11T12:25:43.500 回答