1
0
Fork 0
mirror of synced 2025-04-03 13:23:37 +03:00

second round of CS fixes

This commit is contained in:
Fabio B. Silva 2012-08-12 20:02:01 -03:00
parent a295525501
commit c8899c2b3b
2 changed files with 13 additions and 14 deletions

View file

@ -236,6 +236,7 @@ abstract class AbstractCollectionPersister
* *
* @param \Doctrine\ORM\PersistentCollection $coll * @param \Doctrine\ORM\PersistentCollection $coll
* @param mixed $index * @param mixed $index
*
* @return object * @return object
*/ */
public function get(PersistentCollection $coll, $index) public function get(PersistentCollection $coll, $index)

View file

@ -381,7 +381,6 @@ class BasicEntityPersister
$params = array(); $params = array();
foreach ($updateData as $columnName => $value) { foreach ($updateData as $columnName => $value) {
$placeholder = '?'; $placeholder = '?';
$column = $columnName; $column = $columnName;
@ -503,7 +502,7 @@ class BasicEntityPersister
if ($selfReferential) { if ($selfReferential) {
$otherColumns = ! $mapping['isOwningSide'] $otherColumns = (! $mapping['isOwningSide'])
? $association['joinTable']['joinColumns'] ? $association['joinTable']['joinColumns']
: $association['joinTable']['inverseJoinColumns']; : $association['joinTable']['inverseJoinColumns'];
} }
@ -1109,9 +1108,9 @@ class BasicEntityPersister
throw ORMException::invalidOrientation($this->class->name, $fieldName); throw ORMException::invalidOrientation($this->class->name, $fieldName);
} }
$tableAlias = isset($this->class->fieldMappings[$fieldName]['inherited']) ? $tableAlias = isset($this->class->fieldMappings[$fieldName]['inherited'])
$this->getSQLTableAlias($this->class->fieldMappings[$fieldName]['inherited']) ? $this->getSQLTableAlias($this->class->fieldMappings[$fieldName]['inherited'])
: $baseTableAlias; : $baseTableAlias;
$columnName = $this->quoteStrategy->getColumnName($fieldName, $this->class, $this->platform); $columnName = $this->quoteStrategy->getColumnName($fieldName, $this->class, $this->platform);
@ -1197,7 +1196,6 @@ class BasicEntityPersister
$joinTableName = $this->quoteStrategy->getTableName($eagerEntity, $this->platform); $joinTableName = $this->quoteStrategy->getTableName($eagerEntity, $this->platform);
if ($assoc['isOwningSide']) { if ($assoc['isOwningSide']) {
$tableAlias = $this->getSQLTableAlias($association['targetEntity'], $assocAlias); $tableAlias = $this->getSQLTableAlias($association['targetEntity'], $assocAlias);
$this->selectJoinSql .= ' ' . $this->getJoinSQLForJoinColumns($association['joinColumns']); $this->selectJoinSql .= ' ' . $this->getJoinSQLForJoinColumns($association['joinColumns']);
@ -1309,14 +1307,12 @@ class BasicEntityPersister
return $this->insertSql; return $this->insertSql;
} }
$insertSql = '';
$columns = $this->getInsertColumnList(); $columns = $this->getInsertColumnList();
$tableName = $this->quoteStrategy->getTableName($this->class, $this->platform);
if (empty($columns)) { if (empty($columns)) {
$this->insertSql = $this->platform->getEmptyIdentityInsertSQL( $identityColumn = $this->quoteStrategy->getColumnName($this->class->identifier[0], $this->class, $this->platform);
$this->quoteStrategy->getTableName($this->class, $this->platform), $this->insertSql = $this->platform->getEmptyIdentityInsertSQL($tableName, $identityColumn);
$this->quoteStrategy->getColumnName($this->class->identifier[0], $this->class, $this->platform)
);
return $this->insertSql; return $this->insertSql;
} }
@ -1331,15 +1327,17 @@ class BasicEntityPersister
&& isset($this->columnTypes[$this->class->fieldNames[$column]]) && isset($this->columnTypes[$this->class->fieldNames[$column]])
&& isset($this->class->fieldMappings[$this->class->fieldNames[$column]]['requireSQLConversion'])) { && isset($this->class->fieldMappings[$this->class->fieldNames[$column]]['requireSQLConversion'])) {
$type = Type::getType($this->columnTypes[$this->class->fieldNames[$column]]); $type = Type::getType($this->columnTypes[$this->class->fieldNames[$column]]);
$placeholder = $type->convertToDatabaseValueSQL('?', $this->platform); $placeholder = $type->convertToDatabaseValueSQL('?', $this->platform);
} }
$values[] = $placeholder; $values[] = $placeholder;
} }
$this->insertSql = 'INSERT INTO ' . $this->quoteStrategy->getTableName($this->class, $this->platform) $columns = implode(', ', $columns);
. ' (' . implode(', ', $columns) . ') VALUES (' . implode(', ', $values) . ')'; $values = implode(', ', $values);
$this->insertSql = sprintf('INSERT INTO %s (%s) VALUES (%s)', $tableName, $columns, $values);
return $this->insertSql; return $this->insertSql;
} }