mirror of
https://github.com/WenPai-org/lelms-copyright.git
synced 2026-02-25 06:09:41 +08:00
Added lelms-copyright-zh_CN.l10n.php for improved localization, updated zh_CN.po and zh_CN.mo with new and revised translations, and incremented plugin version to 1.1.9 in lelms-copyright.php. File permissions were also updated for several files.
29 lines
547 B
PHP
Executable file
29 lines
547 B
PHP
Executable file
<?php
|
|
namespace YahnisElsts\PluginUpdateChecker\v5p3\Vcs;
|
|
|
|
if ( !interface_exists(BaseChecker::class, false) ):
|
|
|
|
interface BaseChecker {
|
|
/**
|
|
* Set the repository branch to use for updates. Defaults to 'master'.
|
|
*
|
|
* @param string $branch
|
|
* @return $this
|
|
*/
|
|
public function setBranch($branch);
|
|
|
|
/**
|
|
* Set authentication credentials.
|
|
*
|
|
* @param array|string $credentials
|
|
* @return $this
|
|
*/
|
|
public function setAuthentication($credentials);
|
|
|
|
/**
|
|
* @return Api
|
|
*/
|
|
public function getVcsApi();
|
|
}
|
|
|
|
endif;
|