[2.0] Removing old unused files
This commit is contained in:
parent
089b5dd88a
commit
583d276553
@ -1,15 +0,0 @@
|
||||
[?php
|
||||
|
||||
<?php if ($this->_hasNamespace($metadata)): ?>
|
||||
namespace <?php echo $this->_getNamespace($metadata) ?>;
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($this->_extendsClass()): ?>
|
||||
use <?php echo $this->_getClassToExtendNamespace() ?>;
|
||||
<?php endif; ?>
|
||||
|
||||
<?php echo $this->_getEntityAnnotation($metadata) ?>
|
||||
class <?php echo $this->_getClassName($metadata); ?><?php if ($this->_extendsClass()): ?> extends <?php echo $this->_getClassToExtendName() ?><?php endif; ?>
|
||||
{
|
||||
<?php include('annotation_body.tpl.php') ?>
|
||||
}
|
@ -1,13 +0,0 @@
|
||||
<?php foreach ($metadata->fieldMappings as $fieldMapping): ?><?php if ($this->_hasProperty($fieldMapping['fieldName'], $metadata)) continue; ?>
|
||||
<?php echo $this->_getFieldMappingAnnotation($fieldMapping, $metadata)."\n" ?>
|
||||
<?php echo str_repeat(' ', $this->_numSpaces) ?>private $<?php echo $fieldMapping['fieldName'] ?>;
|
||||
|
||||
<?php endforeach ?>
|
||||
<?php foreach ($metadata->associationMappings as $associationMapping): ?><?php if ($this->_hasProperty($associationMapping->sourceFieldName, $metadata)) continue; ?>
|
||||
<?php echo $this->_getAssociationMappingAnnotation($associationMapping, $metadata)."\n" ?>
|
||||
<?php echo str_repeat(' ', $this->_numSpaces) ?>private $<?php echo $associationMapping->sourceFieldName ?><?php if ($associationMapping->isManyToMany()): ?> = array() <?php endif; ?>;
|
||||
|
||||
<?php endforeach; ?>
|
||||
<?php foreach ($this->_getMethods($metadata) as $method): ?>
|
||||
<?php echo $method ?>
|
||||
<?php endforeach ?>
|
Loading…
x
Reference in New Issue
Block a user