1
0
mirror of synced 2024-12-14 07:06:04 +03:00

Merge pull request #150 from shiroyuki/patch-1

Correct the usage for "nullable"
This commit is contained in:
Jonathan H. Wage 2013-01-16 13:00:42 -08:00
commit c4b0bc5adc

View File

@ -39,7 +39,7 @@ concrete subclasses, ``ConcreteComponent`` and ``ConcreteDecorator``.
*/
protected $id;
/** @Column(type="string", nullable="true") */
/** @Column(type="string", nullable=true) */
protected $name;
/**
@ -191,7 +191,7 @@ of the getSpecial() method to its return value.
class ConcreteDecorator extends Decorator
{
/** @Column(type="string", nullable="true") */
/** @Column(type="string", nullable=true) */
protected $special;
/**