From 79e1be8c3d64b35c829738309720e0c588b756f0 Mon Sep 17 00:00:00 2001 From: Oskar Stark Date: Fri, 1 Dec 2017 15:41:52 +0100 Subject: [PATCH] fixed closing tag --- .../ORM/Tools/Console/Command/GenerateProxiesCommand.php | 2 +- .../ORM/Tools/Console/Command/GenerateRepositoriesCommand.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Doctrine/ORM/Tools/Console/Command/GenerateProxiesCommand.php b/lib/Doctrine/ORM/Tools/Console/Command/GenerateProxiesCommand.php index c792b0067..3755be580 100644 --- a/lib/Doctrine/ORM/Tools/Console/Command/GenerateProxiesCommand.php +++ b/lib/Doctrine/ORM/Tools/Console/Command/GenerateProxiesCommand.php @@ -103,6 +103,6 @@ class GenerateProxiesCommand extends Command // Outputting information message $ui->newLine(); - $ui->text(sprintf('Proxy classes generated to "%s"', $destPath)); + $ui->text(sprintf('Proxy classes generated to "%s"', $destPath)); } } diff --git a/lib/Doctrine/ORM/Tools/Console/Command/GenerateRepositoriesCommand.php b/lib/Doctrine/ORM/Tools/Console/Command/GenerateRepositoriesCommand.php index 787fb8bc5..941944ff5 100644 --- a/lib/Doctrine/ORM/Tools/Console/Command/GenerateRepositoriesCommand.php +++ b/lib/Doctrine/ORM/Tools/Console/Command/GenerateRepositoriesCommand.php @@ -109,6 +109,6 @@ class GenerateRepositoriesCommand extends Command // Outputting information message $ui->newLine(); - $ui->text(sprintf('Repository classes generated to "%s"', $destPath)); + $ui->text(sprintf('Repository classes generated to "%s"', $destPath)); } }