allow setting style to null

This commit is contained in:
madflow 2017-08-01 20:15:23 +02:00
parent edccd21dbd
commit d4e99f74c9

View File

@ -97,9 +97,9 @@ class Cell
}
/**
* @param Style $style
* @param Style $style|null
*/
public function setStyle(Style $style)
public function setStyle(Style $style = null)
{
$this->style = $style;
}