mirror of
https://github.com/owncloud/ocis
synced 2026-04-25 17:25:21 +02:00
refactor: add trailing_comma lint rule
Signed-off-by: Saw-jan <saw.jan.grg3e@gmail.com>
This commit is contained in:
@@ -1493,7 +1493,7 @@ class GraphContext implements Context {
|
||||
$credentials = $this->getAdminOrUserCredentials($adminUser);
|
||||
|
||||
$body = [
|
||||
"@odata.id" => GraphHelper::getFullUrl('https://invalid/', 'users/' . $userId)
|
||||
"@odata.id" => GraphHelper::getFullUrl('https://invalid/', 'users/' . $userId),
|
||||
];
|
||||
|
||||
$this->featureContext->setResponse(
|
||||
@@ -2055,7 +2055,7 @@ class GraphContext implements Context {
|
||||
|
||||
$payload = [
|
||||
"members@odata.bind" => [
|
||||
GraphHelper::getFullUrl($this->featureContext->getBaseUrl(), 'groups/' . $groupIdToAdd)]
|
||||
GraphHelper::getFullUrl($this->featureContext->getBaseUrl(), 'groups/' . $groupIdToAdd)],
|
||||
];
|
||||
|
||||
$this->featureContext->setResponse(
|
||||
@@ -2091,7 +2091,7 @@ class GraphContext implements Context {
|
||||
$credentials = $this->getAdminOrUserCredentials($user);
|
||||
|
||||
$payload = [
|
||||
"@odata.id" => GraphHelper::getFullUrl($this->featureContext->getBaseUrl(), 'groups/' . $groupIdToAdd)
|
||||
"@odata.id" => GraphHelper::getFullUrl($this->featureContext->getBaseUrl(), 'groups/' . $groupIdToAdd),
|
||||
];
|
||||
|
||||
$this->featureContext->setResponse(
|
||||
|
||||
Reference in New Issue
Block a user