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