symfony 2アプリケーションで最初のサービスを作成しようとしていますが、次のエラーが発生します:
InvalidArgumentException: There is no extension able to load the
configuration for "my_app.myservice" (in
/path/to/src/MyApp/MyBundle/DependencyInjection/../Resources/config/services.yml).
Looked for namespace "my_app.myservice", found none.
構成に問題があるようですが、それが何であるかわかりません。
これが私のservices.ymlです
services:
my_app.myservice:
class: MyApp\MyBundle\Service\MyService
そして私のサービスはこのように見えます
<?php
namespace MyApp\MyBundle\Service;
class MyService
{
public function run()
{
echo "hello world";
}
}
手伝ってくれてありがとう !