#1120 - applying CS fixes as per @dantleech's review
This commit is contained in:
parent
29e99b2b89
commit
9ccb56a7ab
2 changed files with 3 additions and 4 deletions
|
@ -54,7 +54,7 @@ Or:
|
||||||
|
|
||||||
<info>%command.full_name%</info> MyEntity
|
<info>%command.full_name%</info> MyEntity
|
||||||
EOT
|
EOT
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -79,7 +79,6 @@ EOT
|
||||||
*/
|
*/
|
||||||
private function displayEntity($entityName, EntityManagerInterface $entityManager, OutputInterface $output)
|
private function displayEntity($entityName, EntityManagerInterface $entityManager, OutputInterface $output)
|
||||||
{
|
{
|
||||||
|
|
||||||
$table = new Table($output);
|
$table = new Table($output);
|
||||||
|
|
||||||
$table->setHeaders(array('Field', 'Value'));
|
$table->setHeaders(array('Field', 'Value'));
|
||||||
|
@ -177,7 +176,7 @@ EOT
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
if (! $matches) {
|
if ( ! $matches) {
|
||||||
throw new \InvalidArgumentException(sprintf(
|
throw new \InvalidArgumentException(sprintf(
|
||||||
'Could not find any mapped Entity classes matching "%s"',
|
'Could not find any mapped Entity classes matching "%s"',
|
||||||
$entityName
|
$entityName
|
||||||
|
|
|
@ -32,7 +32,7 @@ class InfoCommandTest extends OrmFunctionalTestCase
|
||||||
parent::setUp();
|
parent::setUp();
|
||||||
|
|
||||||
$this->application = new Application();
|
$this->application = new Application();
|
||||||
$command = new InfoCommand();
|
$command = new InfoCommand();
|
||||||
|
|
||||||
$this->application->setHelperSet(new HelperSet(array(
|
$this->application->setHelperSet(new HelperSet(array(
|
||||||
'em' => new EntityManagerHelper($this->_em)
|
'em' => new EntityManagerHelper($this->_em)
|
||||||
|
|
Loading…
Add table
Reference in a new issue