Remove useless spacings

This commit is contained in:
2021-08-23 14:42:35 +02:00
parent 0c70b340a9
commit fd06d6ecfa

View File

@@ -5,7 +5,7 @@ import getTranslation from "App/Tasks/getTranslation";
export default class InformationsController {
public async index ( { response }: HttpContextContract ) {
public async index ({ response }: HttpContextContract) {
return response.status(200).send({
informations: await Information
.query()
@@ -14,7 +14,7 @@ export default class InformationsController {
})
}
public async update ( { response, request }: HttpContextContract ) {
public async update ({ response, request }: HttpContextContract) {
const information = await Information.firstOrFail()
const data = await request.validate(InformationUpdateValidator)