diff --git a/app/Http/Controllers/API/Remote/SftpController.php b/app/Http/Controllers/API/Remote/SftpController.php index bc99a7305..04fa432ce 100644 --- a/app/Http/Controllers/API/Remote/SftpController.php +++ b/app/Http/Controllers/API/Remote/SftpController.php @@ -9,7 +9,7 @@ use Pterodactyl\Http\Controllers\Controller; use Illuminate\Foundation\Auth\ThrottlesLogins; use Pterodactyl\Exceptions\Repository\RecordNotFoundException; use Pterodactyl\Services\Sftp\AuthenticateUsingPasswordService; -use Pterodactyl\Http\Requests\API\Remote\SftpAuthenticationFormRequest; +use Pterodactyl\Http\Requests\Api\Remote\SftpAuthenticationFormRequest; class SftpController extends Controller { @@ -34,7 +34,7 @@ class SftpController extends Controller * Authenticate a set of credentials and return the associated server details * for a SFTP connection on the daemon. * - * @param \Pterodactyl\Http\Requests\API\Remote\SftpAuthenticationFormRequest $request + * @param \Pterodactyl\Http\Requests\Api\Remote\SftpAuthenticationFormRequest $request * @return \Illuminate\Http\JsonResponse * * @throws \Pterodactyl\Exceptions\Model\DataValidationException diff --git a/app/Http/Requests/Api/Remote/SftpAuthenticationFormRequest.php b/app/Http/Requests/Api/Remote/SftpAuthenticationFormRequest.php index cb2af93ee..041ff197f 100644 --- a/app/Http/Requests/Api/Remote/SftpAuthenticationFormRequest.php +++ b/app/Http/Requests/Api/Remote/SftpAuthenticationFormRequest.php @@ -1,6 +1,6 @@