Skip to content

Commit 326920d

Browse files
committed
Fix StyleCI issues no 2
1 parent 8b0c821 commit 326920d

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed

src/Api/Groups.php

+1
Original file line numberDiff line numberDiff line change
@@ -1034,6 +1034,7 @@ public function search($id, array $parameters = [])
10341034

10351035
/**
10361036
* Get a list of registry repositories in a group.
1037+
*
10371038
* @see https://docs.gitlab.com/ee/api/container_registry.html#within-a-group
10381039
*
10391040
* @param $id: The ID of a group

src/Api/Projects.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1839,7 +1839,7 @@ public function search($id, array $parameters = [])
18391839
* @param int|string $project_id
18401840
* @param array $parameters {
18411841
*
1842-
* @var bool $tags If the parameter is included as true, each repository includes an array of "tags" in the response.
1842+
* @var bool $tags if the parameter is included as true, each repository includes an array of "tags" in the response
18431843
* @var bool $tags_count If the parameter is included as true, each repository includes "tags_count" in the response.
18441844
* }
18451845
*

src/Api/Registry.php

+1-3
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ public function repositoryTags($project_id, int $repository_id)
6666
);
6767
}
6868

69-
7069
/**
7170
* @see https://docs.gitlab.com/ee/api/container_registry.html#get-details-of-a-registry-repository-tag
7271
*
@@ -86,7 +85,6 @@ public function repositoryTag($project_id, int $repository_id, string $tag_name)
8685
);
8786
}
8887

89-
9088
/**
9189
* @see https://docs.gitlab.com/ee/api/container_registry.html#delete-a-registry-repository-tag
9290
*
@@ -141,4 +139,4 @@ public function removeRepositoryTags($project_id, int $repository_id, array $par
141139
$resolver->resolve($parameters)
142140
);
143141
}
144-
}
142+
}

tests/Api/RegistryTest.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@ public function shouldGetRepositoryTags(): void
7070
$this->assertEquals($expectedArray, $api->repositoryTags(1, 1));
7171
}
7272

73-
7473
/**
7574
* @test
7675
*/
@@ -118,4 +117,4 @@ public function shouldRemoveRepositoryTags(): void
118117

119118
$this->assertEquals($expectedBool, $api->removeRepositoryTags(1, 1, ['name_regex_delete' => '.*', 'keep_n' => 12]));
120119
}
121-
}
120+
}

0 commit comments

Comments
 (0)