Skip to content

Commit c969b8e

Browse files
committed
test
1 parent f218c37 commit c969b8e

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

test/bootstrap.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
require 'vendor/autoload.php';
66

7-
if (class_exists(LocalConfig::class)) {
8-
App::$config = new LocalConfig();
9-
} else {
10-
App::$config = new Config();
7+
if (!class_exists(LocalConfig::class)) {
8+
class LocalConfig extends Config {}
119
}
10+
11+
App::$config = new LocalConfig();

0 commit comments

Comments
 (0)