-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
style(cs): run php-cs-fixer after coding-standard update
Signed-off-by: Thomas Citharel <[email protected]>
- Loading branch information
Showing
4 changed files
with
16 additions
and
16 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -190,9 +190,9 @@ public function testValidatePendingReg() { | |
|
||
public function testCreateAccountWebForm() { | ||
$reg = new Registration(); | ||
$reg->setEmail("[email protected]"); | ||
$reg->setEmail('[email protected]'); | ||
//$reg->setUsername("alice1"); | ||
$reg->setDisplayname("Alice"); | ||
$reg->setDisplayname('Alice'); | ||
//$reg->setPassword("asdf"); | ||
$reg->setEmailConfirmed(true); | ||
|
||
|
@@ -214,9 +214,9 @@ public function testCreateAccountWebForm() { | |
*/ | ||
public function testDuplicateUsernameWebForm() { | ||
$reg = new Registration(); | ||
$reg->setEmail("[email protected]"); | ||
$reg->setEmail('[email protected]'); | ||
//$reg->setUsername("alice1"); | ||
$reg->setDisplayname("Alice"); | ||
$reg->setDisplayname('Alice'); | ||
//$reg->setPassword("asdf"); | ||
$reg->setEmailConfirmed(true); | ||
|
||
|
@@ -238,10 +238,10 @@ public function testDuplicateUsernameWebForm() { | |
*/ | ||
public function testDuplicateUsernameApi() { | ||
$reg = new Registration(); | ||
$reg->setEmail("[email protected]"); | ||
$reg->setUsername("alice1"); | ||
$reg->setDisplayname("Alice"); | ||
$reg->setPassword("crypto(asdf)"); | ||
$reg->setEmail('[email protected]'); | ||
$reg->setUsername('alice1'); | ||
$reg->setDisplayname('Alice'); | ||
$reg->setPassword('crypto(asdf)'); | ||
$reg->setEmailConfirmed(true); | ||
|
||
$this->crypto->method('decrypt') | ||
|
@@ -264,10 +264,10 @@ public function testUsernameDoesntMatchPattern() { | |
]); | ||
|
||
$reg = new Registration(); | ||
$reg->setEmail("[email protected]"); | ||
$reg->setUsername("alice23"); | ||
$reg->setDisplayname("Alice"); | ||
$reg->setPassword("crypto(asdf)"); | ||
$reg->setEmail('[email protected]'); | ||
$reg->setUsername('alice23'); | ||
$reg->setDisplayname('Alice'); | ||
$reg->setPassword('crypto(asdf)'); | ||
$reg->setEmailConfirmed(true); | ||
|
||
$this->crypto->method('decrypt') | ||
|