| Conditions | 1 |
| Paths | 1 |
| Total Lines | 18 |
| Code Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 12 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | 5 | protected function doUnderscore($word) |
|
| 19 | { |
||
| 20 | 5 | return strtolower( |
|
| 21 | 5 | preg_replace( |
|
| 22 | 5 | '/[^A-Z^a-z^0-9]+/', |
|
| 23 | 5 | '_', |
|
| 24 | 5 | preg_replace( |
|
| 25 | 5 | '/([a-zd])([A-Z])/', |
|
| 26 | 5 | '\1_\2', |
|
| 27 | 5 | preg_replace( |
|
| 28 | 5 | '/([A-Z]+)([A-Z][a-z])/', |
|
| 29 | 5 | '\1_\2', |
|
| 30 | 5 | $word |
|
| 31 | ) |
||
| 32 | ) |
||
| 33 | ) |
||
| 34 | ); |
||
| 35 | } |
||
| 36 | } |
||
| 37 |