Skip to content

Commit

Permalink
Created Method enum
Browse files Browse the repository at this point in the history
  • Loading branch information
CommandString committed May 24, 2023
1 parent 4322425 commit b69d5bd
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/Enums/Method.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?php

namespace Tnapf\Spotify\Enums;

enum Method: string
{
case GET = 'GET';
case POST = 'POST';
case PUT = 'PUT';
case DELETE = 'DELETE';
}

0 comments on commit b69d5bd

Please sign in to comment.