| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 2 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 2 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | public static function microTimestamp() |
||
| 13 | 6 | { |
|
| 14 | // get microtime of file generation to preserve migration sequence |
||
| 15 | $time = explode(' ', microtime()); |
||
| 16 | 6 | ||
| 17 | // change the format to 2008_07_14_010813.98232 |
||
| 18 | return date('Y_m_d_His', (int) $time[1]) . '.' . substr((string) $time[0], 2, 5); |
||
| 19 | 6 | } |
|
| 21 |