Skip to content

Commit

Permalink
Merge branch '1.3.x' into 2.0.x
Browse files Browse the repository at this point in the history
* 1.3.x:
  Change Throwable to Exception for PHP 5.6
  FIX - info message must be lowercase
  • Loading branch information
alcaeus committed Dec 18, 2019
2 parents 9de9cb0 + a2708f7 commit 08c3aa7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ protected function execute(Console\Input\InputInterface $input, Console\Output\O
$dm->getHydratorFactory()->generateHydratorClasses($metadatas, $destPath);

// Outputting information message
$output->write(PHP_EOL . sprintf('Hydrator classes generated to "<info>%s</INFO>"', $destPath) . PHP_EOL);
$output->write(PHP_EOL . sprintf('Hydrator classes generated to "<info>%s</info>"', $destPath) . PHP_EOL);
} else {
$output->write('No Metadata Classes to process.' . PHP_EOL);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ protected function execute(Console\Input\InputInterface $input, Console\Output\O
}

// Outputting information message
$output->write(PHP_EOL . sprintf('Persistent collections classes generated to "<info>%s</INFO>"', $destPath) . PHP_EOL);
$output->write(PHP_EOL . sprintf('Persistent collections classes generated to "<info>%s</info>"', $destPath) . PHP_EOL);
} else {
$output->write('No Metadata Classes to process.' . PHP_EOL);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ protected function execute(Console\Input\InputInterface $input, Console\Output\O
$dm->getProxyFactory()->generateProxyClasses($metadatas);

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

0 comments on commit 08c3aa7

Please sign in to comment.