Skip to content
This repository was archived by the owner on Jun 10, 2024. It is now read-only.

Commit 15052ad

Browse files
committed
Merge branch 'develop' into release/v3
* develop: setUp method compatible with Orchestra\Testbench\TestCase::setUp()
2 parents 29812e1 + 4b8af79 commit 15052ad

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

tests/ReCaptchaConfigurationTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ protected function getEnvironmentSetUp($app) {
5252
/**
5353
* Setup the test environment.
5454
*/
55-
protected function setUp() {
55+
protected function setUp(): void {
5656

5757
parent::setUp(); // TODO: Change the autogenerated stub
5858

tests/ReCaptchaTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ public function testReCaptchaV2htmlFormButtonShouldThrowError() {
8181
$this->recaptcha_v2->htmlFormButton();
8282
}
8383

84-
protected function setUp() {
84+
protected function setUp(): void {
8585

8686
parent::setUp(); // TODO: Change the autogenerated stub
8787

tests/ReCaptchaV3Test.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ protected function getEnvironmentSetUp($app) {
102102
/**
103103
* Setup the test environment.
104104
*/
105-
protected function setUp() {
105+
protected function setUp(): void {
106106

107107
parent::setUp(); // TODO: Change the autogenerated stub
108108

0 commit comments

Comments
 (0)