Files
eCert-MBIP/vendor/intervention/image/src/Length.php

12 lines
132 B
PHP

<?php
declare(strict_types=1);
namespace Intervention\Image;
enum Length: string
{
case INCH = 'inch';
case CM = 'cm';
}