Skip to content

Commit df8a322

Browse files
committed
Apply fixes from StyleCI
1 parent 4c68672 commit df8a322

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Api/Groups.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ public function saveMember($group_id, int $user_id, int $access_level)
212212
* @param int|string $group_id
213213
* @param array $parameters {
214214
*
215-
* @var int $group_access The access level to grant the group.
215+
* @var int $group_access the access level to grant the group
216216
* @var string $expires_at Share expiration date in ISO 8601 format: 2016-09-26
217217
* }
218218
*
@@ -447,13 +447,13 @@ public function addVariable($group_id, string $key, string $value, ?bool $protec
447447
if ($protected) {
448448
$payload['protected'] = $protected;
449449
}
450-
450+
451451
if (isset($parameters['masked'])) {
452-
$payload['masked'] = $parameters['masked'];
452+
$payload['masked'] = $parameters['masked'];
453453
}
454454

455455
if (isset($parameters['variable_type'])) {
456-
$payload['variable_type'] = $parameters['variable_type'];
456+
$payload['variable_type'] = $parameters['variable_type'];
457457
}
458458

459459
return $this->post('groups/'.self::encodePath($group_id).'/variables', $payload);

0 commit comments

Comments
 (0)