JGithubRefs

Extends \JGithubObject

GitHub API References class for the Joomla Platform.

package

Joomla.Platform

subpackage

GitHub

since

11.3

Methods

__construct

Constructor.

__construct(\JRegistry &$options = null, \JGithubHttp $client = null) 
inherited
since

11.3

Arguments

$options

\JRegistry

$client

\JGithubHttpThe HTTP client object.

create

Method to create an issue.

create(string $user, string $repo, string $ref, string $sha) : object
since

11.3

Arguments

$user

stringThe name of the owner of the GitHub repository.

$repo

stringThe name of the GitHub repository.

$ref

stringThe name of the fully qualified reference.

$sha

stringThe SHA1 value to set this reference to.

Response

object

edit

Method to update a reference.

edit(string $user, string $repo, string $ref, string $sha, string $force = false) : object
since

11.3

Arguments

$user

stringThe name of the owner of the GitHub repository.

$repo

stringThe name of the GitHub repository.

$ref

stringThe reference to update.

$sha

stringThe SHA1 value to set the reference to.

$force

stringWhether the update should be forced. Default to false.

Response

object

fetchUrl

Method to build and return a full request URL for the request. This method will add appropriate pagination details if necessary and also prepend the API url to have a complete URL for the request.

fetchUrl(string $path, integer $page, integer $limit) : string
inherited
since

11.3

Arguments

$path

stringURL to inflect

$page

integerPage to request

$limit

integerNumber of results to return per page

Response

stringThe request URL.

get

Method to get a reference.

get(string $user, string $repo, string $ref) : object
since

11.3

Arguments

$user

stringThe name of the owner of the GitHub repository.

$repo

stringThe name of the GitHub repository.

$ref

stringThe reference to get.

Response

object

getList

Method to list references for a repository.

getList(string $user, string $repo, string $namespace = '', integer $page, integer $limit) : array
since

11.3

Arguments

$user

stringThe name of the owner of the GitHub repository.

$repo

stringThe name of the GitHub repository.

$namespace

stringOptional sub-namespace to limit the returned references.

$page

integerPage to request

$limit

integerNumber of results to return per page

Response

array

Properties

options

Options for the GitHub object.

inherited
since

11.3

Type(s)

\JRegistry

client

The HTTP client object to use in sending HTTP requests.

inherited
since

11.3

Type(s)

\JGithubHttp