#1120 - removing unused private properties
This commit is contained in:
parent
574f3ea909
commit
39a8a31de9
1 changed files with 1 additions and 13 deletions
|
@ -36,16 +36,6 @@ use Symfony\Component\Console\Output\OutputInterface;
|
|||
*/
|
||||
final class MappingDescribeCommand extends Command
|
||||
{
|
||||
/**
|
||||
* @var OutputInterface
|
||||
*/
|
||||
private $output;
|
||||
|
||||
/**
|
||||
* @var array
|
||||
*/
|
||||
private $out = array();
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
|
@ -74,11 +64,9 @@ EOT
|
|||
{
|
||||
$entityName = $input->getArgument('entityName');
|
||||
|
||||
/* @var $entityManager \Doctrine\ORM\EntityManager */
|
||||
/* @var $entityManager \Doctrine\ORM\EntityManagerInterface */
|
||||
$entityManager = $this->getHelper('em')->getEntityManager();
|
||||
|
||||
$this->output = $output;
|
||||
|
||||
$this->displayEntity($entityName, $entityManager, $output);
|
||||
|
||||
return 0;
|
||||
|
|
Loading…
Add table
Reference in a new issue