apimatic/core-interfaces-php

View on GitHub
src/Core/Authentication/AuthGroup.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace CoreInterfaces\Core\Authentication;

interface AuthGroup
{
    public const AND = "And";
    public const OR = "Or";
}