Coding standards
This commit is contained in:
parent
5f80b57554
commit
7efd615b8c
1 changed files with 3 additions and 3 deletions
|
@ -634,8 +634,8 @@ public function <methodName>()
|
||||||
|
|
||||||
foreach ($metadata->associationMappings as $associationMapping) {
|
foreach ($metadata->associationMappings as $associationMapping) {
|
||||||
if ($associationMapping['type'] & ClassMetadataInfo::TO_ONE) {
|
if ($associationMapping['type'] & ClassMetadataInfo::TO_ONE) {
|
||||||
$nullable = $this->_isAssociationIsNullable($associationMapping);
|
$nullable = $this->_isAssociationIsNullable($associationMapping) ? 'null' : null;
|
||||||
if ($code = $this->_generateEntityStubMethod($metadata, 'set', $associationMapping['fieldName'], $associationMapping['targetEntity'], ($nullable ? 'null' : null))) {
|
if ($code = $this->_generateEntityStubMethod($metadata, 'set', $associationMapping['fieldName'], $associationMapping['targetEntity'], $nullable)) {
|
||||||
$methods[] = $code;
|
$methods[] = $code;
|
||||||
}
|
}
|
||||||
if ($code = $this->_generateEntityStubMethod($metadata, 'get', $associationMapping['fieldName'], $associationMapping['targetEntity'])) {
|
if ($code = $this->_generateEntityStubMethod($metadata, 'get', $associationMapping['fieldName'], $associationMapping['targetEntity'])) {
|
||||||
|
@ -754,7 +754,7 @@ public function <methodName>()
|
||||||
'<variableName>' => Inflector::camelize($fieldName),
|
'<variableName>' => Inflector::camelize($fieldName),
|
||||||
'<methodName>' => $methodName,
|
'<methodName>' => $methodName,
|
||||||
'<fieldName>' => $fieldName,
|
'<fieldName>' => $fieldName,
|
||||||
'<variableDefault>' => (($defaultValue !== null ) ? ('='.$defaultValue) : ''),
|
'<variableDefault>' => ($defaultValue !== null ) ? ('='.$defaultValue) : '',
|
||||||
'<entity>' => $this->_getClassName($metadata)
|
'<entity>' => $this->_getClassName($metadata)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue