forked from loafle/openapi-generator-original
[JAVA] fix toUrlQueryString for BigDecimal (#15764)
* add MyImportTest.java * fix original issue * fix same issue for native library * remove MyImportTest * add test configs * generate samples (again?) * generate samples again * generate samples again, undo pom.xml mistake [amended to retrigger circliCi]
This commit is contained in:
@@ -230,6 +230,25 @@ class FakeController extends Controller
|
||||
|
||||
return response('How about implementing testGroupParameters as a delete method ?');
|
||||
}
|
||||
/**
|
||||
* Operation fakeBigDecimalMap
|
||||
*
|
||||
* .
|
||||
*
|
||||
*
|
||||
* @return Http response
|
||||
*/
|
||||
public function fakeBigDecimalMap()
|
||||
{
|
||||
$input = Request::all();
|
||||
|
||||
//path params validation
|
||||
|
||||
|
||||
//not path params validation
|
||||
|
||||
return response('How about implementing fakeBigDecimalMap as a get method ?');
|
||||
}
|
||||
/**
|
||||
* Operation testBodyWithBinary
|
||||
*
|
||||
|
||||
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
/**
|
||||
* FakeBigDecimalMap200Response
|
||||
*/
|
||||
namespace app\Models;
|
||||
|
||||
/**
|
||||
* FakeBigDecimalMap200Response
|
||||
*/
|
||||
class FakeBigDecimalMap200Response {
|
||||
|
||||
/** @var float $someId */
|
||||
public $someId = 0;
|
||||
|
||||
/** @var array<string,float> $someMap */
|
||||
public $someMap;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user