Skip to content

Commit

Permalink
Fix whitespace linter
Browse files Browse the repository at this point in the history
After merge of #4 few whitespace issues are still left in the code base. Fixing them here.
  • Loading branch information
dmohns committed Dec 11, 2023
1 parent 5507467 commit 0d3327b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ public function store(AndroidAppRequest $request)
throw new \Exception($e->getMessage());
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public function __construct(
private AddressGeographicalInformationService $addressGeographicalInformationService
)
{
}
}
public function createCustomer(AndroidAppRequest $request){
$serialNumber = $request->input('serial_number');
$meter = $this->meterService->getBySerialNumber($serialNumber);
Expand Down Expand Up @@ -84,4 +84,4 @@ public function createCustomer(AndroidAppRequest $request){

return $person;
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@
Route::get('/connection-types', 'ConnectionTypeController@index');
Route::get('/sub-connection-types', 'SubConnectionTypeController@index');
Route::post('/', 'CustomerRegistrationAppController@store');
});
});

0 comments on commit 0d3327b

Please sign in to comment.