Skip to content

Commit 3830870

Browse files
Fixed method order
1 parent 661f391 commit 3830870

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

lib/Gitlab/Client.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -344,19 +344,19 @@ public function systemHooks()
344344
}
345345

346346
/**
347-
* @return Users
347+
* @return Tags
348348
*/
349-
public function users()
349+
public function tags()
350350
{
351-
return new Users($this);
351+
return new Tags($this);
352352
}
353353

354354
/**
355-
* @return Tags
355+
* @return Users
356356
*/
357-
public function tags()
357+
public function users()
358358
{
359-
return new Tags($this);
359+
return new Users($this);
360360
}
361361

362362
/**

0 commit comments

Comments
 (0)