Skip to content
This repository was archived by the owner on Apr 27, 2023. It is now read-only.

Commit f310854

Browse files
gokureGang Wu
authored and
Gang Wu
committed
Add ConfigProvider.php
1 parent a853000 commit f310854

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

src/ConfigProvider.php

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
namespace Gokure\Http\Client;
6+
7+
class ConfigProvider
8+
{
9+
public function __invoke(): array
10+
{
11+
return [
12+
'annotations' => [
13+
'scan' => [
14+
'paths' => [
15+
__DIR__,
16+
],
17+
],
18+
],
19+
];
20+
}
21+
}

0 commit comments

Comments
 (0)