Skip to content

Commit

Permalink
Improve base32 enumeration
Browse files Browse the repository at this point in the history
  • Loading branch information
nyamsprod committed Dec 31, 2023
1 parent 402005c commit 11772df
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Base32/Base32.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@
*
* Based on https://github.com/ChristianRiesen/base32/blob/master/src/Base32.php class
*/
enum Base32: string
enum Base32
{
case Ascii = 'ascii';
case Hex = 'hex';
case Ascii;
case Hex;

private function alphabet(): string
{
Expand Down

0 comments on commit 11772df

Please sign in to comment.