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 bd759c9 commit 84b7555Copy full SHA for 84b7555
README.md
@@ -103,6 +103,11 @@ var_export($exampleFlags->checkFlag(ExampleFlags::FOO | ExampleFlags::BAR));
103
104
var_export($exampleFlags->checkFlag(ExampleFlags::FOO | ExampleFlags::BAZ, false));
105
// true because one of the flags is set (FOO)
106
+
107
+// alias of the above method
108
+var_export($exampleFlags->checkAnyFlag(ExampleFlags::FOO | ExampleFlags::BAZ));
109
+// true
110
111
```
112
113
##### Flag names example
0 commit comments