使用Symfony2依赖注入保留自动完成功能

时间:2011-08-27 11:57:51

标签: php symfony phpstorm

我正在使用PHP Storm作为我的IDE,但我相信其他IDE(如Netbeans)会遇到与我在下面解释的相同的问题。

当使用像Symfony2这样的框架时,我们添加了依赖注入的精彩世界。因此,可以使用如下代码片段的代码简单地实例化对象:

$myThingy = $this->get('some_cool_service');

这非常方便,因为事先已经配置了对象。一个问题是,自动完成基本上完全在任何PHP IDE中断,因为IDE不知道get()方法返回的类型。

有没有办法保留自动完成功能?创建例如Controller的扩展会是答案吗?例如:

class MyController extends Controller {
    /**
     * @return \MyNamespace\CoolService
     */
    public getSomeCoolService() {
        return new CoolService();
    }
}

然后对于应用程序控制器,将MyController指定为基类而不是Controller?

使用Factory类或任何其他可能的方法怎么样?

5 个答案:

答案 0 :(得分:15)

它涉及更多,但您仍然可以使用eclipse PDT执行此操作:

$myThingy = $this->get('some_cool_service');
/* @var $myThingy \MyNamespace\CoolService */

<强>更新this page上的示例显示您也可以使用与phpStorm相反的方式:

$myThingy = $this->get('some_cool_service');
/* @var \MyNamespace\CoolService $myThingy */

答案 1 :(得分:7)

您可以在控制器中定义私有属性

class MyController extends Controller
{
    /**
     * @var \Namespace\To\SomeCoolService;
     */
    private $my_service;

    public function myAction()
    {
        $this->my_service = $this->get('some_cool_service');
        /**
         * enjoy your autocompletion :)
         */
    }
}

答案 2 :(得分:6)

我使用bundle Controller类作为bundle。您需要在方法中注释返回。至少它适用于Eclipse。

/**
 * Gets SomeCoolService
 *
 * @return \Namespace\To\SomeCoolService
 */
protected function getSomeCoolService()
{
    return $this->get('some_cool_service');
}

我不喜欢/ * var ... * /,因为它对代码的影响太大了。 我不喜欢私有属性,因为你错误地认为服务已经加载了。

答案 3 :(得分:1)

我使用Komodo Studio,并使用@var标记变量,甚至在方法内部,为我保留自动完成。

namespace MyProject\MyBundle\Controller;

use Symfony\Component\DependencyInjection\ContainerAware;
use Symfony\Component\HttpFoundation\Request;

class WelcomeController extends ContainerAware
{
    public function indexAction()
    {
        /*@var Request*/$request = $this->container->get('request');
        $request->[autocomplete hint list appears here]
    }
}

答案 4 :(得分:0)

使用netbeans IDE 7.1.2 PHP