バンドルをサービスに挿入する方法はありますか?
サービスコンストラクターを次のように書きたいと思います。
<?php
use Symfony\Component\HttpKernel\Bundle\Bundle;
class MyService
{
/** @var Bundle */
private $bundle;
public function __construct(Bundle $bundle)
{
$this->bundle = $bundle;
}
}
services.yml
私はこのようなものが欲しいです:
services:
my_service:
class: MyService
arguments: ['how_can_i_reference_a_bundle']