| Total Complexity | 2 |
| Total Lines | 34 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | class Response extends YiiResponse |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @const FORMAT_JSON25519 |
||
| 12 | */ |
||
| 13 | const FORMAT_JSON25519 = 'vnd.json+25519'; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @const FORMAT_NCRYPTF_JSON |
||
| 17 | */ |
||
| 18 | const FORMAT_NCRYPTF_JSON = 'vnd.ncryptf+json'; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @return array the formatters that are supported by default |
||
| 22 | */ |
||
| 23 | protected function defaultFormatters() |
||
| 44 |