An updated theme (based on Atticus Finch) for ClassicPress
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
453 B

3 years ago
  1. <?php
  2. if ( !interface_exists('Puc_v4p1_Vcs_BaseChecker', false) ):
  3. interface Puc_v4p1_Vcs_BaseChecker {
  4. /**
  5. * Set the repository branch to use for updates. Defaults to 'master'.
  6. *
  7. * @param string $branch
  8. * @return $this
  9. */
  10. public function setBranch($branch);
  11. /**
  12. * Set authentication credentials.
  13. *
  14. * @param array|string $credentials
  15. * @return $this
  16. */
  17. public function setAuthentication($credentials);
  18. }
  19. endif;