Sneaky files

This commit is contained in:
Dane Everitt 2018-01-19 20:01:56 -06:00
parent 06335a1e47
commit 74bdbea6a4
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
2 changed files with 3 additions and 3 deletions

View file

@ -9,7 +9,7 @@ use Pterodactyl\Http\Controllers\Controller;
use Illuminate\Foundation\Auth\ThrottlesLogins; use Illuminate\Foundation\Auth\ThrottlesLogins;
use Pterodactyl\Exceptions\Repository\RecordNotFoundException; use Pterodactyl\Exceptions\Repository\RecordNotFoundException;
use Pterodactyl\Services\Sftp\AuthenticateUsingPasswordService; use Pterodactyl\Services\Sftp\AuthenticateUsingPasswordService;
use Pterodactyl\Http\Requests\API\Remote\SftpAuthenticationFormRequest; use Pterodactyl\Http\Requests\Api\Remote\SftpAuthenticationFormRequest;
class SftpController extends Controller class SftpController extends Controller
{ {
@ -34,7 +34,7 @@ class SftpController extends Controller
* Authenticate a set of credentials and return the associated server details * Authenticate a set of credentials and return the associated server details
* for a SFTP connection on the daemon. * 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 * @return \Illuminate\Http\JsonResponse
* *
* @throws \Pterodactyl\Exceptions\Model\DataValidationException * @throws \Pterodactyl\Exceptions\Model\DataValidationException

View file

@ -1,6 +1,6 @@
<?php <?php
namespace Pterodactyl\Http\Requests\API\Remote; namespace Pterodactyl\Http\Requests\Api\Remote;
use Illuminate\Foundation\Http\FormRequest; use Illuminate\Foundation\Http\FormRequest;