Use inflector for add/remove methods
This commit is contained in:
parent
e5779a0756
commit
30fd22a260
1 changed files with 2 additions and 2 deletions
|
@ -1092,8 +1092,8 @@ public function __construct()
|
|||
protected function generateEntityStubMethod(ClassMetadataInfo $metadata, $type, $fieldName, $typeHint = null, $defaultValue = null)
|
||||
{
|
||||
$methodName = $type . Inflector::classify($fieldName);
|
||||
if (in_array($type, array("add", "remove")) && substr($methodName, -1) == "s") {
|
||||
$methodName = substr($methodName, 0, -1);
|
||||
if (in_array($type, array("add", "remove"))) {
|
||||
$methodName = Inflector::singularize($methodName);
|
||||
}
|
||||
|
||||
if ($this->hasMethod($methodName, $metadata)) {
|
||||
|
|
Loading…
Add table
Reference in a new issue