Skip to content

Commit fba9e1b

Browse files
authored
Merge pull request #273 from P3D-Legacy/develop
2 parents e520169 + 4d8a712 commit fba9e1b

69 files changed

Lines changed: 2716 additions & 17061 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.env.example

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ PUSHER_APP_KEY=
4545
PUSHER_APP_SECRET=
4646
PUSHER_APP_CLUSTER=mt1
4747

48-
MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
49-
MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"
48+
VITE_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
49+
VITE_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"
5050

5151
GAMEJOLT_GAME_ID=null
5252
GAMEJOLT_GAME_PRIVATE_KEY=null

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/node_modules
22
/public/hot
3+
!/public/build
34
/public/storage
45
/storage/*.key
56
/vendor

app/Actions/Fortify/CreateNewUser.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ class CreateNewUser implements CreatesNewUsers
1616
/**
1717
* Validate and create a newly registered user.
1818
*
19-
* @param array $input
2019
* @return \App\Models\User
2120
*/
2221
public function create(array $input)

app/Actions/Fortify/ResetUserPassword.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ class ResetUserPassword implements ResetsUserPasswords
1414
* Validate and reset the user's forgotten password.
1515
*
1616
* @param mixed $user
17-
* @param array $input
1817
* @return void
1918
*/
2019
public function reset($user, array $input)

app/Actions/Fortify/UpdateUserPassword.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ class UpdateUserPassword implements UpdatesUserPasswords
1414
* Validate and update the user's password.
1515
*
1616
* @param mixed $user
17-
* @param array $input
1817
* @return void
1918
*/
2019
public function update($user, array $input)

app/Actions/Fortify/UpdateUserProfileInformation.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ class UpdateUserProfileInformation implements UpdatesUserProfileInformation
1616
* Validate and update the given user's profile information.
1717
*
1818
* @param mixed $user
19-
* @param array $input
2019
* @return void
2120
*/
2221
public function update($user, array $input)
@@ -57,7 +56,6 @@ public function update($user, array $input)
5756
* Update the given verified user's profile information.
5857
*
5958
* @param mixed $user
60-
* @param array $input
6159
* @return void
6260
*/
6361
protected function updateVerifiedUser($user, array $input)

app/Console/Commands/ImportFromTumblr.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,6 @@ class ImportFromTumblr extends Command
2626

2727
/**
2828
* Execute the console command.
29-
*
30-
* @return int
3129
*/
3230
public function handle(): int
3331
{

app/Console/Commands/NotifyGameUpdate.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@ class NotifyGameUpdate extends Command
2727

2828
/**
2929
* Execute the console command.
30-
*
31-
* @return int
3230
*/
3331
public function handle(): int
3432
{

app/Console/Commands/Update.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,6 @@ public function __construct()
3535

3636
/**
3737
* Execute the console command.
38-
*
39-
* @return int
4038
*/
4139
public function handle(): int
4240
{

app/Console/Commands/UpdateLanguageFiles.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,6 @@ public function __construct()
3535

3636
/**
3737
* Execute the console command.
38-
*
39-
* @return int
4038
*/
4139
public function handle(): int
4240
{

0 commit comments

Comments
 (0)