Skip to content

Commit 77390d7

Browse files
authored
Merge pull request #53 from randstring/master
Fix mistaken exception variable name
2 parents ea0ba71 + ef88196 commit 77390d7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Find_Command.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ private function recurse_directory( $path ) {
284284
}
285285
$this->found_wp[ $version_path ][ $constant ] = $value;
286286
}
287-
} catch ( \Exception $e ) {
287+
} catch ( Exception $exception ) {
288288
$this->log( "Could not process the 'wp-config.php' transformation: " . $exception->getMessage() );
289289
}
290290
}

0 commit comments

Comments
 (0)