| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | public static function ls_l( $file_path ) { |
||
|
1 ignored issue
–
show
|
|||
| 17 | $file_path = str_replace( '\\', '/', $file_path ); |
||
| 18 | return implode( ' ', array( |
||
| 19 | $file_path, |
||
| 20 | filesize( $file_path ), |
||
| 21 | date( 'Y-m-d H:i', filemtime( $file_path ) ), |
||
| 22 | ) ); |
||
| 23 | } |
||
| 24 | } |
||
| 25 |