for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SpareParts\Overseer;
use SpareParts\Enum\Enum;
/**
* @method static FIRST_VOTE_DECIDES
* @method static ALLOW_UNLESS_DENIED
* @method static DENY_UNLESS_ALLOWED
* @method static EVERYONE_MUST_ALLOW_TO_BE_ALLOWED
* @method static EVERYONE_MUST_DENY_TO_BE_DENIED
*/
final class StrategyEnum extends Enum
{
protected static $values = [
'FIRST_VOTE_DECIDES',
'ALLOW_UNLESS_DENIED',
'DENY_UNLESS_ALLOWED',
'EVERYONE_MUST_ALLOW_TO_BE_ALLOWED',
'EVERYONE_MUST_DENY_TO_BE_DENIED',
];
}