We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b55768a commit deaae15Copy full SHA for deaae15
1 file changed
tests/system/View/ViewTest.php
@@ -17,7 +17,7 @@
17
use CodeIgniter\Exceptions\RuntimeException;
18
use CodeIgniter\Test\CIUnitTestCase;
19
use CodeIgniter\View\Exceptions\ViewException;
20
-use Config;
+use Config\View as ViewConfig;
21
use PHPUnit\Framework\Attributes\Group;
22
23
/**
@@ -28,15 +28,15 @@ final class ViewTest extends CIUnitTestCase
28
{
29
private FileLocatorInterface $loader;
30
private string $viewsDir;
31
- private Config\View $config;
+ private ViewConfig $config;
32
33
protected function setUp(): void
34
35
parent::setUp();
36
37
$this->loader = service('locator');
38
$this->viewsDir = __DIR__ . '/Views';
39
- $this->config = new Config\View();
+ $this->config = new ViewConfig();
40
$this->config->appOverridesFolder = '';
41
}
42
0 commit comments