File tree 2 files changed +2
-6
lines changed
src/Resource/ImageProperty
2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -30,11 +30,9 @@ public function __construct($height)
30
30
{
31
31
if ('auto ' !== $ height && !is_int ($ height )) {
32
32
throw new InvalidArgumentException ('Image height must be "auto" or an integer. ' );
33
- } elseif (is_int ($ height ) && $ height < 0 ) {
34
- $ height = 0 ;
35
33
}
36
34
37
- $ this ->height = $ height ;
35
+ $ this ->height = is_int ( $ height ) ? max ( 0 , $ height ) : $ height ;
38
36
}
39
37
40
38
/**
Original file line number Diff line number Diff line change @@ -30,11 +30,9 @@ public function __construct($width)
30
30
{
31
31
if ('auto ' !== $ width && !is_int ($ width )) {
32
32
throw new InvalidArgumentException ('Image width must be "auto" or an integer. ' );
33
- } elseif (is_int ($ width ) && $ width < 0 ) {
34
- $ width = 0 ;
35
33
}
36
34
37
- $ this ->width = $ width ;
35
+ $ this ->width = is_int ( $ width ) ? max ( 0 , $ width ) : $ width ;
38
36
}
39
37
40
38
/**
You can’t perform that action at this time.
0 commit comments