From eef32d4372ee3bb46a02c71d4c04a5e14f5fb191 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20H=C3=B6rnicke?= Date: Tue, 24 Jun 2014 11:02:24 +0200 Subject: [PATCH 1/3] added method to be able to reuse the console application --- .../ORM/Tools/Console/ConsoleRunner.php | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/lib/Doctrine/ORM/Tools/Console/ConsoleRunner.php b/lib/Doctrine/ORM/Tools/Console/ConsoleRunner.php index 7e88615aa..c69e2342b 100644 --- a/lib/Doctrine/ORM/Tools/Console/ConsoleRunner.php +++ b/lib/Doctrine/ORM/Tools/Console/ConsoleRunner.php @@ -55,13 +55,29 @@ class ConsoleRunner * @return void */ static public function run(HelperSet $helperSet, $commands = array()) + { + $cli = self::createApplication($helperSet, $commands); + $cli->run(); + } + + /** + * Creates a console application with the given helperset and + * optional commands. + * + * @param \Symfony\Component\Console\Helper\HelperSet $helperSet + * @param array $commands + * + * @return \Symfony\Component\Console\Application + */ + static public function createApplication(HelperSet $helperSet, $commands = array()) { $cli = new Application('Doctrine Command Line Interface', Version::VERSION); $cli->setCatchExceptions(true); $cli->setHelperSet($helperSet); self::addCommands($cli); $cli->addCommands($commands); - $cli->run(); + + return $cli; } /** From 1d16e5322f62b20f8a8a80452be25fb483e59279 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20H=C3=B6rnicke?= Date: Thu, 24 Jul 2014 09:23:36 +0200 Subject: [PATCH 2/3] added a simple test --- .../ORM/Tools/Console/ConsoleRunnerTest.php | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 tests/Doctrine/Tests/ORM/Tools/Console/ConsoleRunnerTest.php diff --git a/tests/Doctrine/Tests/ORM/Tools/Console/ConsoleRunnerTest.php b/tests/Doctrine/Tests/ORM/Tools/Console/ConsoleRunnerTest.php new file mode 100644 index 000000000..9d1966534 --- /dev/null +++ b/tests/Doctrine/Tests/ORM/Tools/Console/ConsoleRunnerTest.php @@ -0,0 +1,26 @@ +assertInstanceOf('Symfony\Component\Console\Application', $app); + $this->assertSame($helperSet, $app->getHelperSet()); + $this->assertEquals(Version::VERSION, $app->getVersion()); + } +} From a76506c3fd164d44774b56ac88d964361dad48f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20H=C3=B6rnicke?= Date: Thu, 24 Jul 2014 09:38:08 +0200 Subject: [PATCH 3/3] amended documentation --- docs/en/reference/tools.rst | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/docs/en/reference/tools.rst b/docs/en/reference/tools.rst index a5f99d141..eb93831b9 100644 --- a/docs/en/reference/tools.rst +++ b/docs/en/reference/tools.rst @@ -507,3 +507,22 @@ defined ones) is possible through the command: new \MyProject\Tools\Console\Commands\AnotherCommand(), new \MyProject\Tools\Console\Commands\OneMoreCommand(), )); + + +Re-use console application +-------------------------- + +You are also able to retrieve and re-use the default console application. +Just call ``ConsoleRunner::createApplication(...)`` with an appropriate +HelperSet, like it is described in the configuration section. + +.. code-block:: php + + run(); +