Skip to content

Commit 54bc0a7

Browse files
Remove unnecessary class_exists() check
1 parent 8d6b4ac commit 54bc0a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

db-command.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
}
66

77
$autoload = dirname( __FILE__ ) . '/vendor/autoload.php';
8-
if ( file_exists( $autoload ) && ! class_exists( 'DB_Command' ) ) {
8+
if ( file_exists( $autoload ) ) {
99
require_once $autoload;
1010
}
1111

0 commit comments

Comments
 (0)