Skip to content

Commit 432f74b

Browse files
committed
Add Enum class to hold expiration times.
1 parent b353c44 commit 432f74b

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

src/Enum/Time.php

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?php declare(strict_types=1);
2+
3+
namespace Pdsinterop\Solid\Auth\Enum;
4+
5+
class Time
6+
{
7+
public const HOURS_1 = 'PT1H';
8+
public const MINUTES_10 = 'PT10M';
9+
public const MONTHS_1 = 'P1M';
10+
}

0 commit comments

Comments
 (0)