Skip to content

Commit

Permalink
Merge pull request #273 from P3D-Legacy/develop
Browse files Browse the repository at this point in the history
  • Loading branch information
dsbilling authored May 16, 2023
2 parents e520169 + 4d8a712 commit fba9e1b
Show file tree
Hide file tree
Showing 69 changed files with 2,716 additions and 17,061 deletions.
4 changes: 2 additions & 2 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ PUSHER_APP_KEY=
PUSHER_APP_SECRET=
PUSHER_APP_CLUSTER=mt1

MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"
VITE_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
VITE_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"

GAMEJOLT_GAME_ID=null
GAMEJOLT_GAME_PRIVATE_KEY=null
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/node_modules
/public/hot
!/public/build
/public/storage
/storage/*.key
/vendor
Expand Down
1 change: 0 additions & 1 deletion app/Actions/Fortify/CreateNewUser.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ class CreateNewUser implements CreatesNewUsers
/**
* Validate and create a newly registered user.
*
* @param array $input
* @return \App\Models\User
*/
public function create(array $input)
Expand Down
1 change: 0 additions & 1 deletion app/Actions/Fortify/ResetUserPassword.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ class ResetUserPassword implements ResetsUserPasswords
* Validate and reset the user's forgotten password.
*
* @param mixed $user
* @param array $input
* @return void
*/
public function reset($user, array $input)
Expand Down
1 change: 0 additions & 1 deletion app/Actions/Fortify/UpdateUserPassword.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ class UpdateUserPassword implements UpdatesUserPasswords
* Validate and update the user's password.
*
* @param mixed $user
* @param array $input
* @return void
*/
public function update($user, array $input)
Expand Down
2 changes: 0 additions & 2 deletions app/Actions/Fortify/UpdateUserProfileInformation.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ class UpdateUserProfileInformation implements UpdatesUserProfileInformation
* Validate and update the given user's profile information.
*
* @param mixed $user
* @param array $input
* @return void
*/
public function update($user, array $input)
Expand Down Expand Up @@ -57,7 +56,6 @@ public function update($user, array $input)
* Update the given verified user's profile information.
*
* @param mixed $user
* @param array $input
* @return void
*/
protected function updateVerifiedUser($user, array $input)
Expand Down
2 changes: 0 additions & 2 deletions app/Console/Commands/ImportFromTumblr.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@ class ImportFromTumblr extends Command

/**
* Execute the console command.
*
* @return int
*/
public function handle(): int
{
Expand Down
2 changes: 0 additions & 2 deletions app/Console/Commands/NotifyGameUpdate.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@ class NotifyGameUpdate extends Command

/**
* Execute the console command.
*
* @return int
*/
public function handle(): int
{
Expand Down
2 changes: 0 additions & 2 deletions app/Console/Commands/Update.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,6 @@ public function __construct()

/**
* Execute the console command.
*
* @return int
*/
public function handle(): int
{
Expand Down
2 changes: 0 additions & 2 deletions app/Console/Commands/UpdateLanguageFiles.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,6 @@ public function __construct()

/**
* Execute the console command.
*
* @return int
*/
public function handle(): int
{
Expand Down
1 change: 0 additions & 1 deletion app/Console/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ class Kernel extends ConsoleKernel
/**
* Define the application's command schedule.
*
* @param \Illuminate\Console\Scheduling\Schedule $schedule
* @return void
*/
protected function schedule(Schedule $schedule)
Expand Down
2 changes: 0 additions & 2 deletions app/Http/Controllers/Auth/TwitterController.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@ public function redirectToProvider()

/**
* Obtain the user information from Twitter.
*
* @return \Illuminate\Http\RedirectResponse
*/
public function handleProviderCallback(): \Illuminate\Http\RedirectResponse
{
Expand Down
2 changes: 0 additions & 2 deletions app/Http/Controllers/DownloadController.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ class DownloadController extends Controller
{
/**
* Download the latest version of the game
*
* @return RedirectResponse
*/
public function download(): RedirectResponse
{
Expand Down
6 changes: 0 additions & 6 deletions app/Http/Controllers/HomeController.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,6 @@ public function index(Request $request)

/**
* Show the legal information for the application.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\View\View
*/
public function legal(Request $request): \Illuminate\View\View
{
Expand All @@ -44,9 +41,6 @@ public function legal(Request $request): \Illuminate\View\View

/**
* Show the contact information for the application.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\View\View
*/
public function contact(Request $request): \Illuminate\View\View
{
Expand Down
5 changes: 0 additions & 5 deletions app/Http/Controllers/MemberController.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ class MemberController extends Controller
{
/**
* Display a listing of the resource.
*
* @return View
*/
public function index(): View
{
Expand All @@ -21,9 +19,6 @@ public function index(): View

/**
* Display the specified resource.
*
* @param string $param
* @return View
*/
public function show(string $param): View
{
Expand Down
2 changes: 0 additions & 2 deletions app/Http/Controllers/Save/MySaveController.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ public function create()
/**
* Store a newly created resource in storage.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
public function store(Request $request)
Expand Down Expand Up @@ -63,7 +62,6 @@ public function edit($id)
/**
* Update the specified resource in storage.
*
* @param \Illuminate\Http\Request $request
* @param int $id
* @return \Illuminate\Http\Response
*/
Expand Down
2 changes: 0 additions & 2 deletions app/Http/Controllers/ServerController.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ public function create()
/**
* Store a newly created resource in storage.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
public function store(Request $request)
Expand Down Expand Up @@ -66,7 +65,6 @@ public function edit(Server $server)
/**
* Update the specified resource in storage.
*
* @param \Illuminate\Http\Request $request
* @param int $id
* @return \Illuminate\Http\Response
*/
Expand Down
3 changes: 0 additions & 3 deletions app/Http/Controllers/Skin/PlayerSkinController.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ public function create()
/**
* Store a newly created resource in storage.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
public function store(Request $request)
Expand All @@ -68,7 +67,6 @@ public function store(Request $request)
/**
* Store a newly created resource in storage.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
public function duplicate(Request $request)
Expand Down Expand Up @@ -110,7 +108,6 @@ public function edit($id)
/**
* Update the specified resource in storage.
*
* @param \Illuminate\Http\Request $request
* @param int $id
* @return \Illuminate\Http\Response
*/
Expand Down
9 changes: 0 additions & 9 deletions app/Http/Controllers/Skin/SkinController.php
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@ public function create(Request $request)
/**
* Store a newly created resource in storage.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
public function store(Request $request)
Expand Down Expand Up @@ -185,7 +184,6 @@ public function store(Request $request)
/**
* Apply the specified resource.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
public function apply(Request $request, $uuid)
Expand All @@ -209,7 +207,6 @@ public function apply(Request $request, $uuid)
/**
* Like the specified resource.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
public function like(Request $request, $uuid)
Expand All @@ -230,7 +227,6 @@ public function like(Request $request, $uuid)
/**
* Show the form for editing the specified resource.
*
* @param \Illuminate\Http\Request $request
* @param string $uuid
* @return \Illuminate\Http\Response
*/
Expand All @@ -250,7 +246,6 @@ public function edit(Request $request, $uuid)
/**
* Update the specified resource in storage.
*
* @param \Illuminate\Http\Request $request
* @param int $id
* @return \Illuminate\Http\Response
*/
Expand Down Expand Up @@ -283,10 +278,6 @@ public function update(Request $request, $uuid)

/**
* Remove the specified resource from storage.
*
* @param Request $request
* @param $uuid
* @return RedirectResponse
*/
public function destroy(Request $request, $uuid): RedirectResponse
{
Expand Down
2 changes: 0 additions & 2 deletions app/Http/Controllers/Skin/UploadedSkinController.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ public function create()
/**
* Store a newly created resource in storage.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
public function store(Request $request)
Expand Down Expand Up @@ -73,7 +72,6 @@ public function edit($id)
/**
* Update the specified resource in storage.
*
* @param \Illuminate\Http\Request $request
* @param int $id
* @return \Illuminate\Http\Response
*/
Expand Down
2 changes: 0 additions & 2 deletions app/Http/Controllers/TagController.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ public function create()
/**
* Store a newly created resource in storage.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
public function store(Request $request)
Expand Down Expand Up @@ -84,7 +83,6 @@ public function edit(Tag $tag)
/**
* Update the specified resource in storage.
*
* @param \Illuminate\Http\Request $request
* @param int $id
* @return \Illuminate\Http\Response
*/
Expand Down
2 changes: 0 additions & 2 deletions app/Http/Middleware/ApiJsonMiddleware.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ class ApiJsonMiddleware
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
*/
public function handle(Request $request, Closure $next)
Expand Down
4 changes: 0 additions & 4 deletions app/Http/Middleware/GameJoltAssociation.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,6 @@ class GameJoltAssociation
{
/**
* Handle an incoming request.
*
* @param Request $request
* @param Closure $next
* @return mixed
*/
public function handle(Request $request, Closure $next): mixed
{
Expand Down
2 changes: 0 additions & 2 deletions app/Http/Middleware/RedirectIfAuthenticated.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ class RedirectIfAuthenticated
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @param string|null ...$guards
* @return mixed
*/
Expand Down
1 change: 0 additions & 1 deletion app/Http/Middleware/UpdateLastActiveAt.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ class UpdateLastActiveAt
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure(\Illuminate\Http\Request): (\Illuminate\Http\Response|\Illuminate\Http\RedirectResponse) $next
* @return \Illuminate\Http\Response|\Illuminate\Http\RedirectResponse
*/
Expand Down
1 change: 0 additions & 1 deletion app/Listeners/Auth/UpdateUserGameJoltData.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ class UpdateUserGameJoltData
/**
* Handle the event.
*
* @param Login $event
* @return void
*/
public function handle(Login $event)
Expand Down
5 changes: 0 additions & 5 deletions app/Nova/BanReason.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ class BanReason extends Resource
/**
* Get the fields displayed by the resource.
*
* @param \Laravel\Nova\Http\Requests\NovaRequest $request
* @return array
*/
public function fields(NovaRequest $request)
Expand All @@ -45,7 +44,6 @@ public function fields(NovaRequest $request)
/**
* Get the cards available for the request.
*
* @param \Laravel\Nova\Http\Requests\NovaRequest $request
* @return array
*/
public function cards(NovaRequest $request)
Expand All @@ -56,7 +54,6 @@ public function cards(NovaRequest $request)
/**
* Get the filters available for the resource.
*
* @param \Laravel\Nova\Http\Requests\NovaRequest $request
* @return array
*/
public function filters(NovaRequest $request)
Expand All @@ -67,7 +64,6 @@ public function filters(NovaRequest $request)
/**
* Get the lenses available for the resource.
*
* @param \Laravel\Nova\Http\Requests\NovaRequest $request
* @return array
*/
public function lenses(NovaRequest $request)
Expand All @@ -78,7 +74,6 @@ public function lenses(NovaRequest $request)
/**
* Get the actions available for the resource.
*
* @param \Laravel\Nova\Http\Requests\NovaRequest $request
* @return array
*/
public function actions(NovaRequest $request)
Expand Down
Loading

0 comments on commit fba9e1b

Please sign in to comment.