Skip to content

Commit b539274

Browse files
authored
Fix alignment
1 parent 5e0157a commit b539274

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/WP_CLI/Shell/REPL.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -215,8 +215,8 @@ private function get_recursive_mtime( $path ) {
215215
}
216216

217217
if ( is_dir( $path ) ) {
218-
$dir_mtime = filemtime( $path );
219-
$mtime = false !== $dir_mtime ? $dir_mtime : 0;
218+
$dir_mtime = filemtime( $path );
219+
$mtime = false !== $dir_mtime ? $dir_mtime : 0;
220220

221221
$iterator = new \RecursiveIteratorIterator(
222222
new \RecursiveDirectoryIterator( $path, \RecursiveDirectoryIterator::SKIP_DOTS ),

0 commit comments

Comments
 (0)