| Total Complexity | 1 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 9 | class Events |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @Event("Spiechu\SymfonyCommonsBundle\Event\ResponseSchemaCheck\CheckResult") |
||
| 13 | */ |
||
| 14 | public const CHECK_RESULT = 'spiechu_symfony_commons.event.response_schema_check.check_result'; |
||
| 15 | |||
| 16 | protected const CHECK_SCHEMA_EVENT_NAME_PATTERN = 'spiechu_symfony_commons.event.response_schema_check.check_schema_%s'; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @param string $format |
||
| 20 | * |
||
| 21 | * @return string |
||
| 22 | */ |
||
| 23 | 16 | public static function getCheckSchemaEventNameFor(string $format): string |
|
| 33 |