Total Complexity | 4 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
12 | class SchemaConfigCacheControlListBlock extends AbstractSchemaConfigPostListBlock |
||
13 | { |
||
14 | public const ATTRIBUTE_NAME_CACHE_CONTROL_LISTS = 'cacheControlLists'; |
||
15 | |||
16 | protected function getBlockName(): string |
||
17 | { |
||
18 | return 'schema-config-cache-control-lists'; |
||
19 | } |
||
20 | |||
21 | protected function getAttributeName(): string |
||
22 | { |
||
23 | return self::ATTRIBUTE_NAME_CACHE_CONTROL_LISTS; |
||
24 | } |
||
25 | |||
26 | protected function getPostType(): string |
||
27 | { |
||
28 | return GraphQLCacheControlListPostType::POST_TYPE; |
||
29 | } |
||
30 | |||
31 | protected function getHeader(): string |
||
34 | } |
||
35 | } |
||
36 |