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
(Please use thumb to +1 instead reply unless you are adding additional information.)