mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-12-21 06:56:57 +00:00
Add Enum
Signed-off-by: Jean-Yves <7360784+docjyJ@users.noreply.github.com>
This commit is contained in:
parent
a54cfed53d
commit
a0ec043c49
16 changed files with 60 additions and 104 deletions
8
php/src/Container/VersionState.php
Normal file
8
php/src/Container/VersionState.php
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<?php
|
||||
|
||||
namespace AIO\Container;
|
||||
|
||||
enum VersionState: string {
|
||||
case Different = 'different';
|
||||
case Equal = 'equal';
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue