. */ declare(strict_types=1); namespace FireflyIII\Api\V2\Controllers\Model\Transaction; use FireflyIII\Api\V2\Controllers\Controller; use Illuminate\Http\JsonResponse; /** * Class StoreController */ class StoreController extends Controller { /** * TODO this method is practically the same as the V1 method and borrows as much code as possible. * TODO still it duplicates a lot. * TODO the v1 endpoints will never support separate administrations, this is an important distinction. * * @return JsonResponse */ public function post(): JsonResponse { return response()->json([]); } }