1 | <?php |
||
10 | class Configuration implements ConfigurationInterface |
||
11 | { |
||
12 | /** |
||
13 | * @const Which API base URL to use by default. |
||
14 | */ |
||
15 | private const DEFAULT_API_BASE_URL = 'https://api.video-cdn.net/v1/vms/'; |
||
16 | |||
17 | /** |
||
18 | * @const Default OAuth URL (used for fetching and refreshing access token) |
||
19 | */ |
||
20 | private const DEFAULT_OAUTH_URL = 'https://login.movingimage.com/auth/realms/platform/protocol/openid-connect/token'; |
||
21 | |||
22 | /** |
||
23 | * Build the configuration structure for this bundle. |
||
24 | */ |
||
25 | public function getConfigTreeBuilder(): TreeBuilder |
||
74 | } |
||
75 |
This method has been deprecated. The supplier of the class has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the method will be removed from the class and what other method or class to use instead.