Skip to content

Commit f5baa27

Browse files
authored
Merge 42f9e09 into 2e1d0bf
2 parents 2e1d0bf + 42f9e09 commit f5baa27

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

lib/Doctrine/ODM/MongoDB/Tools/Console/Command/GenerateHydratorsCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ protected function execute(Console\Input\InputInterface $input, Console\Output\O
101101
$dm->getHydratorFactory()->generateHydratorClasses($metadatas, $destPath);
102102

103103
// Outputting information message
104-
$output->write(PHP_EOL . sprintf('Hydrator classes generated to "<info>%s</INFO>"', $destPath) . PHP_EOL);
104+
$output->write(PHP_EOL . sprintf('Hydrator classes generated to "<info>%s</info>"', $destPath) . PHP_EOL);
105105
} else {
106106
$output->write('No Metadata Classes to process.' . PHP_EOL);
107107
}

lib/Doctrine/ODM/MongoDB/Tools/Console/Command/GeneratePersistentCollectionsCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ protected function execute(Console\Input\InputInterface $input, Console\Output\O
111111
}
112112

113113
// Outputting information message
114-
$output->write(PHP_EOL . sprintf('Persistent collections classes generated to "<info>%s</INFO>"', $destPath) . PHP_EOL);
114+
$output->write(PHP_EOL . sprintf('Persistent collections classes generated to "<info>%s</info>"', $destPath) . PHP_EOL);
115115
} else {
116116
$output->write('No Metadata Classes to process.' . PHP_EOL);
117117
}

lib/Doctrine/ODM/MongoDB/Tools/Console/Command/GenerateProxiesCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ protected function execute(Console\Input\InputInterface $input, Console\Output\O
103103
$dm->getProxyFactory()->generateProxyClasses($metadatas);
104104

105105
// Outputting information message
106-
$output->write(PHP_EOL . sprintf('Proxy classes generated to "<info>%s</INFO>"', $destPath) . PHP_EOL);
106+
$output->write(PHP_EOL . sprintf('Proxy classes generated to "<info>%s</info>"', $destPath) . PHP_EOL);
107107
} else {
108108
$output->write('No Metadata Classes to process.' . PHP_EOL);
109109
}

0 commit comments

Comments
 (0)