Conditions | 2 |
Paths | 2 |
Total Lines | 13 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
72 | private function getParametersByPath(string $path, string $nextToken = null) |
||
73 | { |
||
74 | $args = [ |
||
75 | 'Path' => $path, |
||
76 | 'Recursive' => true, |
||
77 | 'WithDecryption' => true, |
||
78 | ]; |
||
79 | |||
80 | if ($nextToken) { |
||
81 | $args['NextToken'] = $nextToken; |
||
82 | } |
||
83 | |||
84 | return $this->client->getParametersByPath($args); |
||
85 | } |
||
86 | } |