We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5613bc4 commit 4f1f651Copy full SHA for 4f1f651
.git-blame-ignore-revs
@@ -47,3 +47,4 @@ e85fae4f7290329ac9cfae159e19c1bb55062e4b
47
5bd6cc77c40f19059dbdda4704d2f380099b29e3eb7e6e7d13e3fe753ae5219fb67452e15cd90c65
48
7e6e995f8e32353104b95c1b4394faf1bf030dbb
49
7c5048a7fbbb03da35cfd216c9ccb0701056a073
50
+554b4d2062a059ad0099370872ff5dac74fb99f8
src/Objects/Support/Enums/YesNo.php
@@ -0,0 +1,18 @@
1
+<?php
2
+
3
+/*
4
+ * Copyright (c) 2025. Encore Digital Group.
5
+ * All Rights Reserved.
6
+ */
7
8
+namespace EncoreDigitalGroup\StdLib\Objects\Support\Enums;
9
10
+use EncoreDigitalGroup\StdLib\Objects\Support\Traits\HasEnumValue;
11
12
+enum YesNo: string
13
+{
14
+ use HasEnumValue;
15
16
+ case Yes = "yes";
17
+ case No = "no";
18
+}
0 commit comments