You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$issue = $project->createIssue('This does not work.', [
113
-
'description' => 'This doesn\'t work properly. Please fix.',
114
-
'assignee_id' => 2,
115
-
]);
116
-
117
-
// Closing that issue
118
-
$issue->close();
119
-
```
120
-
121
97
### HTTP Client Builder
122
98
123
99
By providing a `Gitlab\HttpClient\Builder` to the `Gitlab\Client` constructor, you can customize the HTTP client. For example, to customize the user agent:
@@ -133,7 +109,7 @@ $builder->addPlugin($plugin);
133
109
$client = new Gitlab\Client($builder);
134
110
```
135
111
136
-
One can read more about HTTPlug plugins [here](https://docs.php-http.org/en/latest/plugins/introduction.html#how-it-works). Take a look around ([API methods](https://github.com/GitLabPHP/Client/tree/10.0/src/Api),[models](https://github.com/GitLabPHP/Client/tree/10.0/src/Model)) and please feel free to report any bugs, noting our [code of conduct](.github/CODE_OF_CONDUCT.md).
112
+
One can read more about HTTPlug plugins [here](https://docs.php-http.org/en/latest/plugins/introduction.html#how-it-works). Take a look around the [API methods](https://github.com/GitLabPHP/Client/tree/10.0/src/Api), and please feel free to report any bugs, noting our [code of conduct](.github/CODE_OF_CONDUCT.md).
0 commit comments