| 
				 public 
				array
				
				 | 
			#
			getList( string $owner, string $repo )
				
Method to get the list of labels on a repo. 
				
Method to get the list of labels on a repo. Parameters
						$ownerstring- $owner The name of the owner of the GitHub repository.$repostring- $repo The name of the GitHub repository.Returns
						array
 ThrowsSince
							12.3
 | 
		
			| 
				 public 
				object
				
				 | 
			#
			get( string $user, string $repo, string $name )
				
Method to get a specific label on a repo. 
				
Method to get a specific label on a repo. Parameters
						$userstring- $user The name of the owner of the GitHub repository.$repostring- $repo The name of the GitHub repository.$namestring- $name The label name to get.Returns
						object
 ThrowsSince
							12.3
 | 
		
			| 
				 public 
				object
				
				 | 
			#
			create( string $owner, string $repo, string $name, string $color )
				
Method to create a label on a repo. 
				
Method to create a label on a repo. Parameters
						$ownerstring- $owner The name of the owner of the GitHub repository.$repostring- $repo The name of the GitHub repository.$namestring- $name The label name.$colorstring- $color The label color.Returns
						object
 ThrowsSince
							12.3
 | 
		
			| 
				 public 
				object
				
				 | 
			#
			update( string $user, string $repo, string $label, string $name, string $color )
				
Method to update a label on a repo. 
				
Method to update a label on a repo. Parameters
						$userstring- $user The name of the owner of the GitHub repository.$repostring- $repo The name of the GitHub repository.$labelstring- $label The label name.$namestring- $name The new label name.$colorstring- $color The new label color.Returns
						object
 ThrowsSince
							12.3
 | 
		
			| 
				 public 
				object
				
				 | 
			#
			delete( string $owner, string $repo, string $name )
				
Method to delete a label on a repo. 
				
Method to delete a label on a repo. Parameters
						$ownerstring- $owner The name of the owner of the GitHub repository.$repostring- $repo The name of the GitHub repository.$namestring- $name The label name.Returns
						object
 ThrowsSince
							12.3
 | 
		
			| 
				 public 
				object
				
				 | 
			#
			getListByIssue( string $owner, string $repo, integer $number )
				
List labels on an issue. Parameters
						$ownerstring- $owner The name of the owner of the GitHub repository.$repostring- $repo The name of the GitHub repository.$numberinteger- $number The issue number.Returns
						object
 Since
							3.3 (CMS)
 | 
		
			| 
				 public 
				object
				
				 | 
			#
			add( string $owner, string $repo, string $number, array $labels )
				
Add labels to an issue. Parameters
						$ownerstring- $owner The name of the owner of the GitHub repository.$repostring- $repo The name of the GitHub repository.$numberstring- $number The issue number.$labelsarray- $labels An array of labels to add.Returns
						object
 Since
							3.3 (CMS)
 | 
		
			| 
				 public 
				object
				
				 | 
			#
			removeFromIssue( string $owner, string $repo, string $number, string $name )
				
Remove a label from an issue. 
				
Remove a label from an issue. Parameters
						$ownerstring- $owner The name of the owner of the GitHub repository.$repostring- $repo The name of the GitHub repository.$numberstring- $number The issue number.$namestring- $name The name of the label to remove.Returns
						object
 Since
							3.3 (CMS)
 | 
		
			| 
				 public 
				object
				
				 | 
			#
			replace( string $owner, string $repo, string $number, array $labels )
				
Replace all labels for an issue. 
				
Replace all labels for an issue. Sending an empty array ([]) will remove all Labels from the Issue. Parameters
						$ownerstring- $owner The name of the owner of the GitHub repository.$repostring- $repo The name of the GitHub repository.$numberstring- $number The issue number.$labelsarray- $labels New labelsReturns
						object
 Since
							3.3 (CMS)
 | 
		
			| 
				 public 
				object
				
				 | 
			#
			removeAllFromIssue( string $owner, string $repo, string $number )
				
.* Remove all labels from an issue. 
				
.* Remove all labels from an issue. Parameters
						$ownerstring- $owner The name of the owner of the GitHub repository.$repostring- $repo The name of the GitHub repository.$numberstring- $number The issue number.Returns
						object
 Since
							3.3 (CMS)
 | 
		
			| 
				 public 
				object
				
				 | 
			#
			getListByMilestone( string $owner, string $repo, string $number )
				
Get labels for every issue in a milestone. 
				
Get labels for every issue in a milestone. Parameters
						$ownerstring- $owner The name of the owner of the GitHub repository.$repostring- $repo The name of the GitHub repository.$numberstring- $number The issue number.Returns
						object
 Since
							3.3 (CMS)
 |