mirror of
https://codeberg.org/reflect/reflect-client-php.git
synced 2025-09-13 17:43:42 +02:00
fix: composer namespace
This commit is contained in:
parent
05866d02f8
commit
d9b9dc3b9e
2 changed files with 3 additions and 1 deletions
|
@ -12,7 +12,7 @@
|
|||
"minimum-stability": "dev",
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Reflect\\": "src/"
|
||||
"Reflect\\": "src/Reflect/"
|
||||
}
|
||||
},
|
||||
"require": {}
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
<?php
|
||||
|
||||
namespace Reflect;
|
||||
|
||||
// Allowed HTTP verbs
|
||||
enum Method: string {
|
||||
case GET = "GET";
|
Loading…
Add table
Reference in a new issue