0
votes

I'm trying to create a Doctrine entity with :

php app/console doctrine:generate:entity --entity="AWStudio:Category" --fields="name:string(255)" --no-interaction

But i can't, this return :

[InvalidArgumentException] Bundle "AWStudio" does not exist or it is not enabled. Maybe you forgot to add it in the registerBundles() method of your AppKernel.php file?

There is my APPKernel.php

<?php

use Symfony\Component\HttpKernel\Kernel;
use Symfony\Component\Config\Loader\LoaderInterface;

class AppKernel extends Kernel
{
    public function __construct($environment, $debug)
    {
        date_default_timezone_set('Europe/Paris');
        parent::__construct($environment, $debug);
    }

    public function registerBundles()
    {
        $bundles = array(
            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 Symfony\Bundle\AsseticBundle\AsseticBundle(),
            new Doctrine\Bundle\DoctrineBundle\DoctrineBundle(),
            new Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle(),
            new AWStudio\AWCoreBundle\AWCoreBundle(),
            new \FOS\UserBundle\FOSUserBundle(),
            new \AWStudio\AWUserBundle\AWUserBundle(),
            new AWStudio\CKSBundle\AWStudioCKSBundle(),
            new JMS\AopBundle\JMSAopBundle(),
            new Knp\Bundle\PaginatorBundle\KnpPaginatorBundle(),
            new JMS\SecurityExtraBundle\JMSSecurityExtraBundle(),
            new FOS\JsRoutingBundle\FOSJsRoutingBundle,
            new JMS\SerializerBundle\JMSSerializerBundle(),
            new Liuggio\ExcelBundle\LiuggioExcelBundle(),
            new JMS\TwigJsBundle\JMSTwigJsBundle(),
            new RaulFraile\Bundle\LadybugBundle\RaulFraileLadybugBundle(),
            new JMS\DiExtraBundle\JMSDiExtraBundle($this),
            new Stof\DoctrineExtensionsBundle\StofDoctrineExtensionsBundle(),
            new \Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle(),
            new \Fresh\Bundle\DoctrineEnumBundle\FreshDoctrineEnumBundle(),
            new Corley\MaintenanceBundle\CorleyMaintenanceBundle(),
            new Sonata\CoreBundle\SonataCoreBundle(),
            new Sonata\BlockBundle\SonataBlockBundle(),
            new Knp\Bundle\MenuBundle\KnpMenuBundle(),
            new Sonata\DoctrineORMAdminBundle\SonataDoctrineORMAdminBundle(),
            new Sonata\AdminBundle\SonataAdminBundle()
        );

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

        return $bundles;
    }

    public function registerContainerConfiguration(LoaderInterface $loader)
    {
        $loader->load(__DIR__ . '/config/config_' . $this->getEnvironment() . '.yml');
    }
}

Thanks ! :)

1
Check your vendor folder and make sure the bundle is there? - Andrew Nolan
In my vendor folder i have : awstudio , so i'm trying to change the command AWStudio by awstudio but this return the same error :/ - user8296385

1 Answers

0
votes

You need to give the complete name of the bundle to the command. AWStudio is actually your vendor name.

I can see you have three bundles in the AWStudio vendor: AWCoreBundle, AWUserBundle and CKSBundle.

Let's say you want to add your entity in the AWCoreBundle, here is the command:

php app/console doctrine:generate:entity --entity="AWStudioAWUserBundle:Category" --fields="name:string(255)" --no-interaction

Note the AWUserBundle bundle name after AWStudio.