getClassMetadata() публичный Метод

Returns class metadata for given class name
public getClassMetadata ( string $className ) : Doctrine\Common\Persistence\Mapping\ClassMetadata
$className string
Результат Doctrine\Common\Persistence\Mapping\ClassMetadata
 /**
  * Executes the actions
  *
  * @param InputInterface  $input
  * @param OutputInterface $output
  */
 protected function execute(InputInterface $input, OutputInterface $output)
 {
     $force = true === $input->getOption('force');
     foreach ($this->mapping as $className => $options) {
         $metadata = $this->doctrineHelper->getClassMetadata($className);
         $this->dumpSerializationFile($metadata, $options, $output, $force);
     }
 }