Completed
Pull Request — master (#7724)
by
unknown
09:18
created
lib/Doctrine/ORM/Mapping/Factory/UnderscorePluralNamingStrategy.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
      */
74 74
     public function embeddedFieldToColumnName($propertyName, $embeddedColumnName, $className = null, $embeddedClassName = null)
75 75
     {
76
-        return $this->underscore($propertyName) . '_' . $embeddedColumnName;
76
+        return $this->underscore($propertyName).'_'.$embeddedColumnName;
77 77
     }
78 78
 
79 79
     /**
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
      */
90 90
     public function joinColumnName($propertyName, $className = null)
91 91
     {
92
-        return $this->underscore($propertyName) . '_' . $this->referenceColumnName();
92
+        return $this->underscore($propertyName).'_'.$this->referenceColumnName();
93 93
     }
94 94
 
95 95
     /**
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
      */
98 98
     public function joinTableName($sourceEntity, $targetEntity, $propertyName = null)
99 99
     {
100
-        return $this->_classToTableName($sourceEntity) . '_' . $this->_classToTableName($targetEntity);
100
+        return $this->_classToTableName($sourceEntity).'_'.$this->_classToTableName($targetEntity);
101 101
     }
102 102
 
103 103
     /**
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
      */
106 106
     public function joinKeyColumnName($entityName, $referencedColumnName = null)
107 107
     {
108
-        return $this->_classToTableName($entityName) . '_' .
108
+        return $this->_classToTableName($entityName).'_'.
109 109
                 ($referencedColumnName ?: $this->referenceColumnName());
110 110
     }
111 111
 
Please login to merge, or discard this patch.