Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
theodorejb committed Jan 26, 2025
1 parent f218c37 commit c969b8e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

require 'vendor/autoload.php';

if (class_exists(LocalConfig::class)) {
App::$config = new LocalConfig();
} else {
App::$config = new Config();
if (!class_exists(LocalConfig::class)) {
class LocalConfig extends Config {}
}

App::$config = new LocalConfig();

Check failure on line 11 in test/bootstrap.php

View workflow job for this annotation

GitHub Actions / Run tests on 8.4

Instantiated class DevTheorem\PeachySQL\Test\src\LocalConfig not found.

Check failure on line 11 in test/bootstrap.php

View workflow job for this annotation

GitHub Actions / Run tests on 8.4

Static property DevTheorem\PeachySQL\Test\src\App::$config (DevTheorem\PeachySQL\Test\src\Config) does not accept DevTheorem\PeachySQL\Test\src\LocalConfig.

0 comments on commit c969b8e

Please sign in to comment.