mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-12-20 14:36:52 +00:00
8 lines
123 B
PHP
8 lines
123 B
PHP
<?php
|
|
|
|
namespace AIO\Container;
|
|
|
|
enum VersionState: string {
|
|
case Different = 'different';
|
|
case Equal = 'equal';
|
|
}
|