<?php
namespace IlluminateImageTransformations;
use IlluminateContractsImageTransformation;
class Crop implements Transformation
{
public function __construct(
public readonly int $width,
public readonly int $height,
public readonly int $x = 0,
public readonly int $y = 0,
) {
//
}
}