-
-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 5.4: [Translation][Mailer] Convert `$this` calls to static ones in data providers [BC Break] Make data providers for abstract test cases static use TestCase suffix for abstract tests in Tests directories Fix Request locale property doc types Bump absolute lowest dep to 4.4
- Loading branch information
Showing
4 changed files
with
11 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -95,7 +95,7 @@ public function testValidInLooseModeEmails($email) | |
$this->assertNoViolation(); | ||
} | ||
|
||
public function getEmailsOnlyValidInLooseMode() | ||
public static function getEmailsOnlyValidInLooseMode() | ||
{ | ||
return [ | ||
['[email protected]'], | ||
|
@@ -137,7 +137,7 @@ public function testValidNormalizedEmailsInLooseMode($email) | |
$this->assertNoViolation(); | ||
} | ||
|
||
public function getEmailsWithWhitespacesOnlyValidInLooseMode() | ||
public static function getEmailsWithWhitespacesOnlyValidInLooseMode() | ||
{ | ||
return [ | ||
["\x09\x09[email protected]\x09\x09"], | ||
|
@@ -252,7 +252,7 @@ public function testInvalidAllowNoTldEmails($email) | |
->assertRaised(); | ||
} | ||
|
||
public function getInvalidAllowNoTldEmails() | ||
public static function getInvalidAllowNoTldEmails() | ||
{ | ||
return [ | ||
['example bar'], | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters