| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 35 | 4 | public function getAction(): string |
|
| 36 | { |
||
| 37 | 4 | $parts = explode('\\', $this->method); |
|
| 38 | 4 | $shortName = array_pop($parts); |
|
| 39 | |||
| 40 | 4 | $name = CaseFormatter::camelToColon(str_replace('::', ':', $shortName)); |
|
| 41 | |||
| 42 | // correct some naming workaround due to reserved keywords |
||
| 43 | 4 | $name = str_replace('basics:', '', $name); |
|
| 44 | 4 | $name = str_replace('cobject:', 'object:', $name); |
|
| 45 | |||
| 46 | 4 | return $name; |
|
| 47 | } |
||
| 48 | |||
| 59 |