fix type, update tests in php nextgen (#16758)

This commit is contained in:
William Cheng
2023-10-09 14:40:34 +08:00
committed by GitHub
parent 5fb6fcf9ef
commit 48f454cf72
10 changed files with 33 additions and 14 deletions

View File

@@ -22,6 +22,8 @@ class ServerVariablesInOperationTest extends TestCase
$this->fakeHttpClient = new FakeHttpClient();
$this->api = new Api\PetApi($this->fakeHttpClient);
$this->pet = new Model\Pet();
$this->pet->setName("something");
$this->pet->setPhotoUrls(array("https://a.com"));
}
public function testServerVariablesInOperation(): void