[core] width and height are non-null
This commit is contained in:
parent
2f05ef4a0b
commit
107485d991
1 changed files with 2 additions and 2 deletions
|
@ -361,8 +361,8 @@ class Image implements \ArrayAccess
|
|||
"length = :length WHERE id = :id",
|
||||
[
|
||||
"id" => $this->id,
|
||||
"width" => $this->width ?? 0,
|
||||
"height" => $this->height ?? 0,
|
||||
"width" => $this->width,
|
||||
"height" => $this->height,
|
||||
"lossless" => $this->lossless,
|
||||
"video" => $this->video,
|
||||
"video_codec" => $this->video_codec,
|
||||
|
|
Reference in a new issue