Fixed setting width of Cell Style

The setWidth method did not change the width in the style, seems to be a small mistake.
Now the width is correctly for the Cell Style.
This commit is contained in:
rikvdlooi 2020-04-15 22:34:19 +02:00 committed by GitHub
parent 733f845f8f
commit 04b224caa5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -299,7 +299,7 @@ class Cell extends Border
*/
public function setWidth($value)
{
$this->setIntVal($value);
$this->width = $this->setIntVal($value);
return $this;
}