Add API client class name to the debug panel.
This commit is contained in:
parent
1e709c6199
commit
1905ed84dd
|
|
@ -191,6 +191,7 @@ if ( !class_exists('Puc_v4_Vcs_PluginUpdateChecker') ):
|
|||
parent::onDisplayConfiguration($panel);
|
||||
$panel->row('Branch', $this->branch);
|
||||
$panel->row('Authentication enabled', $this->api->isAuthenticationEnabled() ? 'Yes' : 'No');
|
||||
$panel->row('API client', get_class($this->api));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -94,6 +94,7 @@ if ( !class_exists('Puc_v4_Vcs_ThemeUpdateChecker', false) ):
|
|||
parent::onDisplayConfiguration($panel);
|
||||
$panel->row('Branch', $this->branch);
|
||||
$panel->row('Authentication enabled', $this->api->isAuthenticationEnabled() ? 'Yes' : 'No');
|
||||
$panel->row('API client', get_class($this->api));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue