1
0
mirror of https://github.com/Intervention/image.git synced 2025-08-13 09:24:05 +02:00

Add method to SizeInterface

This commit is contained in:
Oliver Vogel
2022-05-22 18:59:53 +02:00
parent 38e01fc339
commit 2de45528dd

View File

@@ -16,4 +16,5 @@ interface SizeInterface
public function isPortrait(): bool;
public function alignPivot(string $position, int $offset_x = 0, int $offset_y = 0): SizeInterface;
public function alignPivotTo(SizeInterface $size, string $position): SizeInterface;
public function contain(int $width, int $height): SizeInterface;
}