FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
unirate-bundle/src/DependencyInjection/Configuration.php at main · UniRate-API/unirate-bundle · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
UniRate-API
/
unirate-bundle
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
0
Pull requests
0
Discussions
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
unirate-bundle
/
src
/
DependencyInjection
/
Configuration.php
Copy path
More file actions
More file actions
Latest commit
History
History
History
36 lines (30 loc) · 1.09 KB
Breadcrumbs
unirate-bundle
/
src
/
DependencyInjection
/
Configuration.php
Copy path
File metadata and controls
36 lines (30 loc) · 1.09 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php
declare
(strict_types=
1
);
namespace
UniRateApi
\
Bundle
\
DependencyInjection
;
use
Symfony
\
Component
\
Config
\
Definition
\
Builder
\
TreeBuilder
;
use
Symfony
\
Component
\
Config
\
Definition
\
ConfigurationInterface
;
class
Configuration
implements
ConfigurationInterface
{
public
function
getConfigTreeBuilder
():
TreeBuilder
{
$
treeBuilder
=
new
TreeBuilder
(
'
unirate
'
);
$
rootNode
=
$
treeBuilder
->
getRootNode
();
$
rootNode
->
children
()
->
scalarNode
(
'
api_key
'
)
->
isRequired
()
->
cannotBeEmpty
()
->
info
(
'
UniRate API key (get one at https://unirateapi.com)
'
)
->
end
()
->
scalarNode
(
'
base_url
'
)
->
defaultValue
(
'
https://api.unirateapi.com
'
)
->
info
(
'
UniRate API base URL (override for testing)
'
)
->
end
()
->
integerNode
(
'
timeout
'
)
->
defaultValue
(
30
)
->
info
(
'
HTTP request timeout in seconds
'
)
->
end
()
->
end
();
return
$
treeBuilder
;
}
}
Back
|
FazBrowse Home
|
New Git URL