Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
32 | public function get($app, $guestSpaceId = null) |
||
33 | { |
||
34 | $options = ['json' => ['app' => $app]]; |
||
35 | |||
36 | /** @var JsonStream $stream */ |
||
37 | $stream = $this->client |
||
38 | ->get(KintoneApi::generateUrl('app/form/fields.json', $guestSpaceId), $options) |
||
39 | ->getBody(); |
||
40 | |||
41 | return $stream->jsonSerialize(); |
||
42 | } |
||
43 | } |
||
44 |