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