Skip to content

Commit 8c05bd8

Browse files
GrahamCampbellStyleCIBot
authored andcommitted
Apply fixes from StyleCI
1 parent ce498e2 commit 8c05bd8

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/Api/Projects.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,6 +301,7 @@ public function triggerPipeline($project_id, string $ref, string $token, array $
301301
/**
302302
* @param int $project_id
303303
* @param int $runner_id
304+
*
304305
* @return mixed
305306
*/
306307
public function disableRunner(int $project_id, int $runner_id)
@@ -311,13 +312,15 @@ public function disableRunner(int $project_id, int $runner_id)
311312
/**
312313
* @param int $project_id
313314
* @param int $runner_id
315+
*
314316
* @return mixed
315317
*/
316318
public function enableRunner(int $project_id, int $runner_id)
317319
{
318320
$parameters = [
319-
'runner_id' => $runner_id
321+
'runner_id' => $runner_id,
320322
];
323+
321324
return $this->post('projects/'.self::encodePath($project_id).'/runners', $parameters);
322325
}
323326

0 commit comments

Comments
 (0)