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.
2 parents aaaaf52 + 956f363 commit b77da21Copy full SHA for b77da21
lib/Github/Client.php
@@ -312,15 +312,16 @@ protected function addPlugin(Plugin $plugin)
312
}
313
314
/**
315
- * Remove a plugin by its fqn.
+ * Remove a plugin by its fully qualified class name (FQCN).
316
*
317
- * @param string $fqn
+ * @param string $fqcn
318
*/
319
- protected function removePlugin($fqn)
+ protected function removePlugin($fqcn)
320
{
321
foreach ($this->plugins as $idx => $plugin) {
322
- if ($plugin instanceof $fqn) {
+ if ($plugin instanceof $fqcn) {
323
unset($this->plugins[$idx]);
324
+ $this->httpClientModified = true;
325
326
327
0 commit comments