Use PSR-12 code style

This commit is contained in:
James Cole
2022-10-30 14:23:00 +01:00
parent b27fe59ab4
commit 1667b88dcd
154 changed files with 277 additions and 322 deletions

View File

@@ -77,8 +77,7 @@ class AccountController extends Controller
$paginator->setPath(route('api.v2.accounts.transactions', [$account->id])); // TODO . $this->buildParams()
return response()
->json($this->jsonApiList('transactions', $paginator, new TransactionGroupTransformer))
->json($this->jsonApiList('transactions', $paginator, new TransactionGroupTransformer()))
->header('Content-Type', self::CONTENT_TYPE);
}
}

View File

@@ -31,6 +31,4 @@ use FireflyIII\Api\V2\Controllers\Controller;
*/
class BillController extends Controller
{
}