Skip to content

Commit c783206

Browse files
style: formatting
1 parent b54ea07 commit c783206

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

framework/core/tests/integration/api/users/CreateTest.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ public function admins_can_create_activated_users()
144144
*/
145145
public function admin_can_create_user_with_longest_possible_local_part_email()
146146
{
147-
$email = str_repeat('a', 64) . '@machine.local';
147+
$email = str_repeat('a', 64).'@machine.local';
148148

149149
$response = $this->send(
150150
$this->request(
@@ -178,7 +178,7 @@ public function admin_can_create_user_with_longest_possible_local_part_email()
178178
*/
179179
public function admin_can_create_user_with_longest_valid_domain()
180180
{
181-
$email = 't@' . str_repeat('a', 63) . '.' . str_repeat('b', 63) . '.' . str_repeat('c', 63) . '.' . str_repeat('d', 58) . '.x';
181+
$email = 't@'.str_repeat('a', 63).'.'.str_repeat('b', 63).'.'.str_repeat('c', 63).'.'. str_repeat('d', 58).'.x';
182182

183183
$response = $this->send(
184184
$this->request(
@@ -213,8 +213,8 @@ public function admin_can_create_user_with_longest_valid_domain()
213213
public function admin_can_create_user_with_longest_valid_email()
214214
{
215215
$localPart = str_repeat('a', 64);
216-
$domain = str_repeat('a', 61) . '.' . str_repeat('a', 60) . '.' . str_repeat('a', 60) . '.local';
217-
$email = $localPart . '@' . $domain;
216+
$domain = str_repeat('a', 61).'.'.str_repeat('a', 60).'.'.str_repeat('a', 60).'.local';
217+
$email = $localPart.'@'.$domain;
218218

219219
$response = $this->send(
220220
$this->request(
@@ -248,7 +248,7 @@ public function admin_can_create_user_with_longest_valid_email()
248248
*/
249249
public function admin_cannot_create_user_with_invalid_email_length()
250250
{
251-
$email = str_repeat('a', 65) . '@' . str_repeat('a', 256) . '.local';
251+
$email = str_repeat('a', 65).'@'.str_repeat('a', 256).'.local';
252252

253253
$response = $this->send(
254254
$this->request(

0 commit comments

Comments
 (0)