TenantAtlas/apps/platform/app/Support/Resources/ProviderResourceBindingStatus.php
Ahmed Darrazi fb2642e941
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 1m9s
feat(resources): implement provider resource identity binding
Added ProviderResourceBinding model, migrations, policies, and supporting framework for canonical resource identity mapping as defined in Spec 381.
2026-06-15 17:37:06 +02:00

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';
}