No Enum class to extend (at the moment)

This commit is contained in:
Diederik de Groot
2020-03-17 12:52:17 +01:00
committed by GitHub
parent 3151f30a78
commit 7d582df212

View File

@@ -3,7 +3,8 @@ declare(strict_types=1);
namespace SCCP\Crypto; namespace SCCP\Crypto;
class HashAlgo extends Enum { class HashAlgo // extends Enum
{
private const SHA1 = 0; private const SHA1 = 0;
private const SHA256 = 1; private const SHA256 = 1;
} }
@@ -27,4 +28,4 @@ class Crypto {
} }
class Signer { class Signer {
} }