Я изучаю Symfony 4.1.3.
Я создал свой демо-проект с композитором:
composer -V: Composer version 1.7.1 2018-08-07 09:39:23
Я установил orm-fixtures:
composer require orm-fixture
Using version ^3.0 for doctrine/doctrine-fixtures-bundle
./composer.json has been updated
Loading composer repositories with package information
Updating dependencies (including require-dev)
Restricting packages listed in "symfony/symfony" to "4.1.*"
Nothing to install or update
Generating autoload files
ocramius/package-versions: Generating version class...
ocramius/package-versions: ...done generating version class
Затем я создал свое приспособление:
php bin/console make:fixtures
Создан файл src / DataFixtures / ArticleFixtures.php:
<?php
namespace AppDataFixtures;
use DoctrineCommonPersistenceObjectManager;
use DoctrineBundleFixturesBundleFixture;
class ArticleFixtures extends Fixture
{
public function load(ObjectManager $manager)
{
// $product = new Product();
// $manager->persist($product);
$manager->flush();
}
}
И тогда строка use DoctrineBundleFixturesBundleFixture;
подчеркивается красным цветом со следующим сообщением:
The import DoctrineBundleFixturesBundleFixture cannot be resolved
Я застрял в этой ошибке, я не знаю, как ее исправить. Любая помощь будет оценена по достоинству.
Я изучаю Symfony 4.1.3.
Я создал свой демо-проект с композитором:
composer -V: Composer version 1.7.1 2018-08-07 09:39:23
Я установил orm-fixtures:
composer require orm-fixture
Using version ^3.0 for doctrine/doctrine-fixtures-bundle
./composer.json has been updated
Loading composer repositories with package information
Updating dependencies (including require-dev)
Restricting packages listed in "symfony/symfony" to "4.1.*"
Nothing to install or update
Generating autoload files
ocramius/package-versions: Generating version class...
ocramius/package-versions: ...done generating version class
Затем я создал свое приспособление:
php bin/console make:fixtures
Создан файл src / DataFixtures / ArticleFixtures.php:
<?php
namespace AppDataFixtures;
use DoctrineCommonPersistenceObjectManager;
use DoctrineBundleFixturesBundleFixture;
class ArticleFixtures extends Fixture
{
public function load(ObjectManager $manager)
{
// $product = new Product();
// $manager->persist($product);
$manager->flush();
}
}
И тогда строка use DoctrineBundleFixturesBundleFixture;
подчеркивается красным цветом со следующим сообщением:
The import DoctrineBundleFixturesBundleFixture cannot be resolved
Я застрял в этой ошибке, я не знаю, как ее исправить. Любая помощь будет оценена по достоинству.
01symfony4,