radarrplexorganizrnginxsonarrdashboardembycouchpotatonzbgetbookmarkapplication-dashboardmuximuxlandingpagestartpagelandinghtpcserverhomepagesabnzbdheimdall
		
		
		
		
			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.
		
		
		
		
		
			
		
			
				
					
					
						
							59 lines
						
					
					
						
							1.0 KiB
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							59 lines
						
					
					
						
							1.0 KiB
						
					
					
				| <?php | |
| 
 | |
| namespace Github\Api; | |
| 
 | |
| use Github\Api\GitData\Blobs; | |
| use Github\Api\GitData\Commits; | |
| use Github\Api\GitData\References; | |
| use Github\Api\GitData\Tags; | |
| use Github\Api\GitData\Trees; | |
| 
 | |
| /** | |
|  * Getting full versions of specific files and trees in your Git repositories. | |
|  * | |
|  * @link   http://developer.github.com/v3/git/ | |
|  * | |
|  * @author Joseph Bielawski <stloyd@gmail.com> | |
|  */ | |
| class GitData extends AbstractApi | |
| { | |
|     /** | |
|      * @return Blobs | |
|      */ | |
|     public function blobs() | |
|     { | |
|         return new Blobs($this->client); | |
|     } | |
| 
 | |
|     /** | |
|      * @return Commits | |
|      */ | |
|     public function commits() | |
|     { | |
|         return new Commits($this->client); | |
|     } | |
| 
 | |
|     /** | |
|      * @return References | |
|      */ | |
|     public function references() | |
|     { | |
|         return new References($this->client); | |
|     } | |
| 
 | |
|     /** | |
|      * @return Tags | |
|      */ | |
|     public function tags() | |
|     { | |
|         return new Tags($this->client); | |
|     } | |
| 
 | |
|     /** | |
|      * @return Trees | |
|      */ | |
|     public function trees() | |
|     { | |
|         return new Trees($this->client); | |
|     } | |
| }
 | |
| 
 |