Skip to content

Commit dda54f4

Browse files
committed
switch to using ternary operator with max
1 parent 6ad4cf7 commit dda54f4

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

src/Resource/ImageProperty/HeightProperty.php

+1-3
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,9 @@ public function __construct($height)
3030
{
3131
if ('auto' !== $height && !is_int($height)) {
3232
throw new InvalidArgumentException('Image height must be "auto" or an integer.');
33-
} elseif (is_int($height) && $height < 0) {
34-
$height = 0;
3533
}
3634

37-
$this->height = $height;
35+
$this->height = is_int($height) ? max(0, $height) : $height;
3836
}
3937

4038
/**

src/Resource/ImageProperty/WidthProperty.php

+1-3
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,9 @@ public function __construct($width)
3030
{
3131
if ('auto' !== $width && !is_int($width)) {
3232
throw new InvalidArgumentException('Image width must be "auto" or an integer.');
33-
} elseif (is_int($width) && $width < 0) {
34-
$width = 0;
3533
}
3634

37-
$this->width = $width;
35+
$this->width = is_int($width) ? max(0, $width) : $width;
3836
}
3937

4038
/**

0 commit comments

Comments
 (0)