We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7409e0 commit a941110Copy full SHA for a941110
composer.json
@@ -12,6 +12,7 @@
12
},
13
"require": {
14
"php": "^8.3",
15
+ "laravel/framework": "^12.27",
16
"pestphp/pest": "^4.0",
17
"pestphp/pest-plugin-browser": "^4.0",
18
"pestphp/pest-plugin-laravel": "^4.0"
tests/TestCase.php
@@ -8,14 +8,5 @@
8
#[RequiresEnvironmentVariable('APP_BASE_PATH')]
9
abstract class TestCase extends BaseTestCase
10
{
11
- /** {@inheritdoc} */
- #[\Override]
- public function createApplication()
- {
- if (! isset($_ENV['APP_BASE_PATH']) && isset($_SERVER['APP_BASE_PATH'])) {
- $_ENV['APP_BASE_PATH'] = $_SERVER['APP_BASE_PATH'];
- }
-
19
- return parent::createApplication();
20
+ //
21
}
0 commit comments