15.
サービスプロバイダーでインスタンス作成
• app/Providers/TestServiceProvider.php
public function register()
{
$this->app->bind('Testinterface', function($app)
{
return new Test($app['Test']);
});
}
• config/app.php
'AppProvidersTestServiceProvider'
※Laravel5のドキュメント例になります。他の記述の仕方もあります。
16.
Controllerで依存性を注入
• app/Http/Controllers/WelcomeController.php
protected $test;
!
public function __construct(Test $test)
{
$this -> test = $test;
}
public function index()
{
$this -> test ->addition($x, $y);
}
Be the first to comment