mirror of
https://github.com/nextcloud/all-in-one.git
synced 2026-05-28 06:20:14 +00:00
10 lines
148 B
PHP
10 lines
148 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace AIO\Container;
|
|
|
|
enum VersionState: string {
|
|
case Different = 'different';
|
|
case Equal = 'equal';
|
|
}
|