Total Complexity | 4 |
Total Lines | 41 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
12 | class JsonRpcHttpServerSwaggerDocExtension implements ExtensionInterface |
||
13 | { |
||
14 | // Extension identifier (used in configuration for instance) |
||
15 | const EXTENSION_IDENTIFIER = 'json_rpc_http_server_swagger_doc'; |
||
16 | |||
17 | /** |
||
18 | * {@inheritdoc} |
||
19 | */ |
||
20 | 1 | public function load(array $configs, ContainerBuilder $container) |
|
29 | 1 | } |
|
30 | |||
31 | /** |
||
32 | * {@inheritdoc} |
||
33 | */ |
||
34 | 2 | public function getNamespace() |
|
35 | { |
||
36 | 2 | return 'http://example.org/schema/dic/'.$this->getAlias(); |
|
37 | } |
||
38 | |||
39 | /** |
||
40 | * {@inheritdoc} |
||
41 | */ |
||
42 | 1 | public function getXsdValidationBasePath() |
|
43 | { |
||
44 | 1 | return ''; |
|
45 | } |
||
46 | |||
47 | /** |
||
48 | * {@inheritdoc} |
||
49 | */ |
||
50 | 2 | public function getAlias() |
|
53 | } |
||
54 | } |
||
55 |