Merge pull request #1848 from rikvdlooi/patch-1

Fixed setting width of Cell Style
This commit is contained in:
Progi1984 2022-11-29 21:46:07 +01:00 committed by GitHub
commit b2dfa65698
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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