Merge pull request #161 from SergiX44/analysis-4xmLV1

Apply fixes from StyleCI
This commit is contained in:
Sergio Brighenti 2020-03-19 09:40:33 +01:00 committed by GitHub
commit a86f4aff3f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,7 +3,6 @@
namespace App\Controllers;
use App\Web\ValidationChecker;
use PDO;
use Psr\Http\Message\ResponseInterface as Response;
@ -113,5 +112,4 @@ class TagController extends Controller
'same.userOrAdmin' => $this->session->get('admin', false) || $this->database->query('SELECT * FROM `uploads` WHERE `id` = ? LIMIT 1', param($request, 'mediaId'))->fetch()->user_id === $this->session->get('user_id'),
]);
}
}
}