File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -16,9 +16,13 @@ class AttachmentService extends \JiraCloud\JiraClient
16
16
* Returns the meta-data for an attachment, including the URI of the actual attached file.
17
17
*
18
18
* @param int|string $id attachment Id
19
+ *
19
20
* @outDir string downloads the content and store into outDir
21
+ *
20
22
* @overwrite boolean determines whether to overwrite the file if it already exists.
23
+ *
21
24
* @mode int outDir creation mode.
25
+ *
22
26
* @recursive boolean Allows the creation of nested directories specified in the pathname.
23
27
*
24
28
*@throws JiraException
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ trait ClassSerialize
14
14
*/
15
15
public function toArray (array $ ignoreProperties = [], bool $ excludeMode = true ): array
16
16
{
17
- $ tmp = ( get_object_vars ($ this ) );
17
+ $ tmp = get_object_vars ($ this );
18
18
$ retAr = null ;
19
19
20
20
foreach ($ tmp as $ key => $ value ) {
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ class Reporter implements \JsonSerializable
38
38
#[\ReturnTypeWillChange]
39
39
public function jsonSerialize ()
40
40
{
41
- $ vars = ( get_object_vars ($ this ) );
41
+ $ vars = get_object_vars ($ this );
42
42
43
43
foreach ($ vars as $ key => $ value ) {
44
44
if ($ key === 'name ' && ($ this ->isWantUnassigned () === true )) {
You can’t perform that action at this time.
0 commit comments