Skip to content

Commit ebecec0

Browse files
committed
fix lines length
1 parent 9e9d10a commit ebecec0

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/Parse/ParseClient.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,8 @@ public static function setConnectionTimeout($connectionTimeout)
477477
}
478478

479479
/**
480-
* Sets maximum number of seconds of request/response operation. Use 0 to wait indefinitely, null to default behaviour.
480+
* Sets maximum number of seconds of request/response operation.
481+
* Use 0 to wait indefinitely, null to default behaviour.
481482
*
482483
* @param int|null $timeout
483484
*/

src/Parse/ParseUser.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,8 @@ public static function loginWithAnonymous()
198198
$uuid_parts = str_split(md5(mt_rand()), 4);
199199
$data = ['authData' => [
200200
'anonymous' => [
201-
'id' => '{$uuid_parts[0]}{$uuid_parts[1]}-{$uuid_parts[2]}-{$uuid_parts[3]}-{$uuid_parts[4]}-{$uuid_parts[5]}{$uuid_parts[6]}{$uuid_parts[7]}',
201+
'id' => '{$uuid_parts[0]}{$uuid_parts[1]}-{$uuid_parts[2]}-{$uuid_parts[3]}'
202+
. '-{$uuid_parts[4]}-{$uuid_parts[5]}{$uuid_parts[6]}{$uuid_parts[7]}',
202203
],
203204
]];
204205

0 commit comments

Comments
 (0)