Skip to content

Commit 1b7bffd

Browse files
committed
Add Enum class representing a user approval or denial of a request.
1 parent 9fdbce4 commit 1b7bffd

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

src/Enum/Authorization.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?php declare(strict_types=1);
2+
3+
namespace Pdsinterop\Solid\Auth\Enum;
4+
5+
class Authorization
6+
{
7+
public const APPROVED = true;
8+
public const DENIED = false;
9+
}

0 commit comments

Comments
 (0)