<?php
declare(strict_types=1);
namespace InterventionImageModifiers;
use InterventionImageDriversSpecializableModifier;
use InterventionImageInterfacesProfileInterface;
class ProfileModifier extends SpecializableModifier
{
public function __construct(public ProfileInterface $profile)
{
}
}