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