Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 1m9s
Added ProviderResourceBinding model, migrations, policies, and supporting framework for canonical resource identity mapping as defined in Spec 381.
13 lines
208 B
PHP
13 lines
208 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Support\Resources;
|
|
|
|
enum ProviderResourceBindingStatus: string
|
|
{
|
|
case Active = 'active';
|
|
case Superseded = 'superseded';
|
|
case Revoked = 'revoked';
|
|
}
|