@@ -216,7 +216,6 @@ public function shouldTransferProjectToGroup(): void
216
216
->method ('post ' )
217
217
->with ('groups/1/projects/2 ' )
218
218
->willReturn ($ expectedBool );
219
- ;
220
219
221
220
$ this ->assertEquals ($ expectedBool , $ api ->transfer (1 , 2 ));
222
221
}
@@ -326,7 +325,6 @@ public function shouldRemoveMember(): void
326
325
->method ('delete ' )
327
326
->with ('groups/1/members/2 ' )
328
327
->willReturn ($ expectedBool );
329
- ;
330
328
331
329
$ this ->assertEquals ($ expectedBool , $ api ->removeMember (1 , 2 ));
332
330
}
@@ -343,7 +341,6 @@ public function shouldRemoveGroup(): void
343
341
->method ('delete ' )
344
342
->with ('groups/1 ' )
345
343
->willReturn ($ expectedBool );
346
- ;
347
344
348
345
$ this ->assertEquals ($ expectedBool , $ api ->remove (1 ));
349
346
}
@@ -455,7 +452,6 @@ public function shouldRemoveLabel(): void
455
452
->method ('delete ' )
456
453
->with ('groups/1/labels/456 ' , [])
457
454
->willReturn ($ expectedBool );
458
- ;
459
455
460
456
$ this ->assertEquals ($ expectedBool , $ api ->removeLabel (1 , 456 ));
461
457
}
@@ -591,7 +587,6 @@ public function shouldRemoveVariable(): void
591
587
->method ('delete ' )
592
588
->with ('groups/1/variables/ftp_password ' )
593
589
->willReturn ($ expectedBool );
594
- ;
595
590
596
591
$ this ->assertEquals ($ expectedBool , $ api ->removeVariable (1 , 'ftp_password ' ));
597
592
}
@@ -846,7 +841,7 @@ public function shouldGetActiveDeployTokens(): void
846
841
$ api ->expects ($ this ->once ())
847
842
->method ('get ' )
848
843
->with ('groups/1/deploy_tokens ' , ['active ' => true ])
849
- ->willReturn ([]);;
844
+ ->willReturn ([]);
850
845
851
846
$ this ->assertEquals ([], $ api ->deployTokens (1 , true ));
852
847
}
@@ -875,7 +870,7 @@ public function shouldGetInactiveDeployTokens(): void
875
870
$ api ->expects ($ this ->once ())
876
871
->method ('get ' )
877
872
->with ('groups/1/deploy_tokens ' , ['active ' => false ])
878
- ->willReturn ([]);;
873
+ ->willReturn ([]);
879
874
880
875
$ this ->assertEquals ([], $ api ->deployTokens (1 , false ));
881
876
}
@@ -936,7 +931,7 @@ public function shouldDeleteDeployToken(): void
936
931
$ api ->expects ($ this ->once ())
937
932
->method ('delete ' )
938
933
->with ('groups/1/deploy_tokens/2 ' )
939
- ->willReturn ($ expectedBool );;
934
+ ->willReturn ($ expectedBool );
940
935
941
936
$ this ->assertEquals ($ expectedBool , $ api ->deleteDeployToken (1 , 2 ));
942
937
}
0 commit comments