Fix compatibility with SF4 + Other fixes

This commit is contained in:
Gianluigi 'cocciagialla' Mammarella
2019-04-02 14:58:41 +02:00
parent 873dc0ae08
commit 2d36e5f060
7 changed files with 31 additions and 27 deletions

View File

@ -35,6 +35,11 @@ class ComplexType extends Configuration
return $this->isNillable;
}
public function getIsNillable()
{
return $this->isNillable;
}
public function setName($name)
{
$this->name = $name;
@ -50,6 +55,11 @@ class ComplexType extends Configuration
$this->isNillable = (bool) $isNillable;
}
public function setIsNillable($isNillable)
{
$this->isNillable = (bool) $isNillable;
}
/**
* @return bool
*/
@ -66,7 +76,7 @@ class ComplexType extends Configuration
public function setIsAttribute($isAttribute)
{
$this->isAttribute = $isAttribute;
return $this;
}
@ -74,4 +84,4 @@ class ComplexType extends Configuration
{
return 'complextype';
}
}
}