We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 800522a commit 13b3a9bCopy full SHA for 13b3a9b
lib/Gitlab/Api/Projects.php
@@ -650,6 +650,18 @@ public function languages($project_id)
650
return $this->get($this->getProjectPath($project_id, 'languages'));
651
}
652
653
+ /**
654
+ * @param int $project_id
655
+ * @param array $parameters
656
+ * @return mixed
657
+ */
658
+ public function forks($project_id, array $parameters = [])
659
+ {
660
+ $resolver = $this->createOptionsResolver();
661
+
662
+ return $this->get($this->getProjectPath($project_id, 'forks'), $resolver->resolve($parameters));
663
+ }
664
665
/**
666
* @param int $project_id
667
* @param array $params (
0 commit comments