Sensio Framework Extra Bundle问题

时间:2016-02-09 18:18:25

标签: symfony composer-php phpstorm

Symfony v 3.0.2 PHP 7 PHP Storm 10.0.3 OSX 10.11.2

让我说,我之前从未与Symfony合作过。经过一些研究后,我和我的项目经理决定,它比其他可用的框架更适合项目的参数。

在浏览视频教程时,他们提到使用Framework Extra Bundle和注释,以便使构建更快更有效,我同意这一点,但我似乎无法让这件事情发挥作用。

我按照作曲家安装方向指向该字母,并在内核和json文件中验证了它的引用,但当我尝试使用PHPStorm中的自动完成功能时,它还没有发生。

这是AppKernel:

public function registerBundles()
    {
        $bundles = [
            new Symfony\Bundle\FrameworkBundle\FrameworkBundle(),
            new Symfony\Bundle\SecurityBundle\SecurityBundle(),
            new Symfony\Bundle\TwigBundle\TwigBundle(),
            new Symfony\Bundle\MonologBundle\MonologBundle(),
            new Symfony\Bundle\SwiftmailerBundle\SwiftmailerBundle(),
            new Doctrine\Bundle\DoctrineBundle\DoctrineBundle(),
            new Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle(),
            new AppBundle\AppBundle(),
        ];

        if (in_array($this->getEnvironment(), ['dev', 'test'], true)) {
            $bundles[] = new Symfony\Bundle\DebugBundle\DebugBundle();
            $bundles[] = new Symfony\Bundle\WebProfilerBundle\WebProfilerBundle();
            $bundles[] = new Sensio\Bundle\DistributionBundle\SensioDistributionBundle();
            $bundles[] = new Sensio\Bundle\GeneratorBundle\SensioGeneratorBundle();
        }

        return $bundles;
    }
"require": {
        "php": ">=5.5.9",
        "symfony/symfony": "3.0.*",
        "doctrine/orm": "^2.5",
        "doctrine/doctrine-bundle": "^1.6",
        "doctrine/doctrine-cache-bundle": "^1.2",
        "symfony/swiftmailer-bundle": "^2.3",
        "symfony/monolog-bundle": "^2.8",
        "sensio/distribution-bundle": "^5.0",
        "sensio/framework-extra-bundle": "^3.0",
        "incenteev/composer-parameter-handler": "^2.0"
    },

正如你所看到的,它应该是无处不在的。但是,如果我尝试在文件中放置一个use语句,它会给我一个警告,说明找不到Statement的使用,并且注释的自动完成函数都没有按预期运行。

思想?

1 个答案:

答案 0 :(得分:4)

需要安装的插件是PHP Annotation。下面我已经包含了回购的链接。

https://github.com/Haehnchen/idea-php-annotation-plugin