BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
public_html
/
app.imagivibe.com
/
app
/
Packages
/
Creatify
/
Enums
📤 Upload
📝 New File
📁 New Folder
Close
Editing: AspectRatio.php
<?php namespace App\Packages\Creatify\Enums; use App\Concerns\HasEnumConvert; enum AspectRatio: string { use HasEnumConvert; case RATIO_16_9 = '16x9'; case RATIO_1_1 = '1x1'; case RATIO_9_16 = '9x16'; /** * get label from enum */ public function label(): string { return match ($this) { self::RATIO_16_9 => 'Ratio 16:9', self::RATIO_1_1 => 'Ratio 1:1', self::RATIO_9_16 => 'Ratio 9:16' }; } }
Save
Cancel