Skip to content

Commit a941110

Browse files
committed
Fix GA integration
Signed-off-by: Mior Muhammad Zaki <[email protected]>
1 parent a7409e0 commit a941110

File tree

2 files changed

+2
-10
lines changed

2 files changed

+2
-10
lines changed

composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
},
1313
"require": {
1414
"php": "^8.3",
15+
"laravel/framework": "^12.27",
1516
"pestphp/pest": "^4.0",
1617
"pestphp/pest-plugin-browser": "^4.0",
1718
"pestphp/pest-plugin-laravel": "^4.0"

tests/TestCase.php

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,5 @@
88
#[RequiresEnvironmentVariable('APP_BASE_PATH')]
99
abstract class TestCase extends BaseTestCase
1010
{
11-
/** {@inheritdoc} */
12-
#[\Override]
13-
public function createApplication()
14-
{
15-
if (! isset($_ENV['APP_BASE_PATH']) && isset($_SERVER['APP_BASE_PATH'])) {
16-
$_ENV['APP_BASE_PATH'] = $_SERVER['APP_BASE_PATH'];
17-
}
18-
19-
return parent::createApplication();
20-
}
11+
//
2112
}

0 commit comments

Comments
 (0)