From 7ce13025b77421186f7fcafc4b3e9d23ee93f67e Mon Sep 17 00:00:00 2001 From: Alsatian67 Date: Wed, 13 Nov 2019 00:15:45 +0100 Subject: [PATCH] Remove droped commands https://github.com/doctrine/mongodb-odm/commit/db7e7f9828d3e00f4cf1a4c563d8a7927bc0b3a2#diff-1d5e3aa943bba6afa82639beb29a85fc --- docs/en/reference/console-commands.rst | 4 ---- 1 file changed, 4 deletions(-) diff --git a/docs/en/reference/console-commands.rst b/docs/en/reference/console-commands.rst index 4f6cafba2f..9290eebd5c 100644 --- a/docs/en/reference/console-commands.rst +++ b/docs/en/reference/console-commands.rst @@ -6,10 +6,8 @@ Console component, to ease your development process: - ``odm:clear-cache:metadata`` - Clear all metadata cache of the various cache drivers. - ``odm:query`` - Query mongodb and inspect the outputted results from your document classes. -- ``odm:generate:documents`` - Generate document classes and method stubs from your mapping information. - ``odm:generate:hydrators`` - Generates hydrator classes for document classes. - ``odm:generate:proxies`` - Generates proxy classes for document classes. -- ``odm:generate:repositories`` - Generate repository classes from your mapping information. - ``odm:schema:create`` - Allows you to create databases, collections and indexes for your documents - ``odm:schema:drop`` - Allows you to drop databases, collections and indexes for your documents - ``odm:schema:update`` - Allows you to update indexes for your documents @@ -36,10 +34,8 @@ console command easily with the following code: $app->setHelperSet($helperSet); $app->addCommands( [ - new \Doctrine\ODM\MongoDB\Tools\Console\Command\GenerateDocumentsCommand(), new \Doctrine\ODM\MongoDB\Tools\Console\Command\GenerateHydratorsCommand(), new \Doctrine\ODM\MongoDB\Tools\Console\Command\GenerateProxiesCommand(), - new \Doctrine\ODM\MongoDB\Tools\Console\Command\GenerateRepositoriesCommand(), new \Doctrine\ODM\MongoDB\Tools\Console\Command\QueryCommand(), new \Doctrine\ODM\MongoDB\Tools\Console\Command\ClearCache\MetadataCommand(), new \Doctrine\ODM\MongoDB\Tools\Console\Command\Schema\CreateCommand(),