Open mingtsay opened 6 years ago
Let's have
$cmd->flag('a')->boolean(); $cmd->flag('b')->boolean()->conflictsWith('c'); $cmd->flag('c')->boolean();
to get the following result: PASS: (no args), -a, -b, -c, -ab, -ac FAIL: -bc, -abc
(no args)
-a
-b
-c
-ab
-ac
-bc
-abc
(Please use thumb to +1 instead reply unless you are adding additional information.)
Let's have
to get the following result: PASS:
(no args)
,-a
,-b
,-c
,-ab
,-ac
FAIL:-bc
,-abc
(Please use thumb to +1 instead reply unless you are adding additional information.)