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 4e511b0 commit 76ce600Copy full SHA for 76ce600
lib/Gitlab/Api/Projects.php
@@ -4,7 +4,7 @@
4
5
class Projects extends AbstractApi
6
{
7
- public function all($page = 1, $per_page = static::PER_PAGE)
+ public function all($page = 1, $per_page = self::PER_PAGE)
8
9
return $this->get('projects', array(
10
'page' => $page,
@@ -56,7 +56,7 @@ public function removeMember($project_id, $user_id)
56
return $this->delete('projects/'.urlencode($project_id).'/members/'.urldecode($user_id));
57
}
58
59
- public function hooks($project_id, $page = 1, $per_page = static::PER_PAGE)
+ public function hooks($project_id, $page = 1, $per_page = self::PER_PAGE)
60
61
return $this->get('projects/'.urlencode($project_id).'/hooks', array(
62
0 commit comments