Skip to content

Commit 18f7874

Browse files
Fix StyleCi
1 parent 03a2ff2 commit 18f7874

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/Api/Integrations.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public function all($project_id)
4040
* @param int|string $project_id
4141
* @param array $params {
4242
*
43-
* @var string $webhook The Microsoft Teams webhook.
43+
* @var string $webhook The Microsoft Teams webhook
4444
* @var bool $notify_only_broken_pipelines Send notifications for broken pipelines
4545
* @var string $branches_to_be_notified Branches to send notifications for. Valid options are all, default,
4646
* protected, and default_and_protected. The default value is "default"
@@ -123,7 +123,7 @@ public function createMicrosoftTeams($project_id, array $params = [])
123123
* @param int|string $project_id
124124
* @param array $params {
125125
*
126-
* @var string $webhook The Microsoft Teams webhook.
126+
* @var string $webhook The Microsoft Teams webhook
127127
* @var bool $notify_only_broken_pipelines Send notifications for broken pipelines
128128
* @var string $branches_to_be_notified Branches to send notifications for. Valid options are all, default,
129129
* protected, and default_and_protected. The default value is "default"

tests/Api/IntegrationsTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public function shouldGetMicrosoftTeams(): void
6969
{
7070
$expectedArray = [
7171
'title' => 'Microsoft Teams notifications',
72-
'slug' => 'microsoft-teams'
72+
'slug' => 'microsoft-teams',
7373
];
7474

7575
$api = $this->getApiMock();
@@ -129,15 +129,15 @@ public function shouldUpdateJira(): void
129129

130130
$this->assertEquals($expectedArray, $api->updateJira(1, [
131131
'url' => 'http://test.org/',
132-
'password' => '123'
132+
'password' => '123',
133133
]));
134134
}
135135

136136
public function shouldGetJira(): void
137137
{
138138
$expectedArray = [
139139
'title' => 'Jira',
140-
'slug' => 'jira'
140+
'slug' => 'jira',
141141
];
142142

143143
$api = $this->getApiMock();

0 commit comments

Comments
 (0)