fix: composer namespace

This commit is contained in:
Victor Westerlund 2023-01-18 17:04:51 +01:00
parent 05866d02f8
commit d9b9dc3b9e
2 changed files with 3 additions and 1 deletions

View file

@ -12,7 +12,7 @@
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"Reflect\\": "src/"
"Reflect\\": "src/Reflect/"
}
},
"require": {}

View file

@ -1,5 +1,7 @@
<?php
namespace Reflect;
// Allowed HTTP verbs
enum Method: string {
case GET = "GET";