nginxsonarrradarrplexorganizrdashboardbookmarkapplication-dashboardmuximuxlandingpagestartpagelandinghtpcserverhomepagesabnzbdheimdallembycouchpotatonzbget
		
		
		
		
			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.
		
		
		
		
		
			
		
			
				
					
					
						
							60 lines
						
					
					
						
							1.5 KiB
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							60 lines
						
					
					
						
							1.5 KiB
						
					
					
				
								<?php
							 | 
						|
								
							 | 
						|
								namespace Github\Api\Project;
							 | 
						|
								
							 | 
						|
								use Github\Api\AbstractApi;
							 | 
						|
								use Github\Api\AcceptHeaderTrait;
							 | 
						|
								use Github\Exception\MissingArgumentException;
							 | 
						|
								
							 | 
						|
								class Cards extends AbstractApi
							 | 
						|
								{
							 | 
						|
								    use AcceptHeaderTrait;
							 | 
						|
								
							 | 
						|
								    /**
							 | 
						|
								     * Configure the accept header for Early Access to the projects api.
							 | 
						|
								     *
							 | 
						|
								     * @see https://developer.github.com/v3/repos/projects/#projects
							 | 
						|
								     *
							 | 
						|
								     * @return self
							 | 
						|
								     */
							 | 
						|
								    public function configure()
							 | 
						|
								    {
							 | 
						|
								        $this->acceptHeaderValue = 'application/vnd.github.inertia-preview+json';
							 | 
						|
								
							 | 
						|
								        return $this;
							 | 
						|
								    }
							 | 
						|
								
							 | 
						|
								    public function all($columnId, array $params = [])
							 | 
						|
								    {
							 | 
						|
								        return $this->get('/projects/columns/'.rawurlencode($columnId).'/cards', array_merge(['page' => 1], $params));
							 | 
						|
								    }
							 | 
						|
								
							 | 
						|
								    public function show($id)
							 | 
						|
								    {
							 | 
						|
								        return $this->get('/projects/columns/cards/'.rawurlencode($id));
							 | 
						|
								    }
							 | 
						|
								
							 | 
						|
								    public function create($columnId, array $params)
							 | 
						|
								    {
							 | 
						|
								        return $this->post('/projects/columns/'.rawurlencode($columnId).'/cards', $params);
							 | 
						|
								    }
							 | 
						|
								
							 | 
						|
								    public function update($id, array $params)
							 | 
						|
								    {
							 | 
						|
								        return $this->patch('/projects/columns/cards/'.rawurlencode($id), $params);
							 | 
						|
								    }
							 | 
						|
								
							 | 
						|
								    public function deleteCard($id)
							 | 
						|
								    {
							 | 
						|
								        return $this->delete('/projects/columns/cards/'.rawurlencode($id));
							 | 
						|
								    }
							 | 
						|
								
							 | 
						|
								    public function move($id, array $params)
							 | 
						|
								    {
							 | 
						|
								        if (!isset($params['position'])) {
							 | 
						|
								            throw new MissingArgumentException(['position']);
							 | 
						|
								        }
							 | 
						|
								
							 | 
						|
								        return $this->post('/projects/columns/cards/'.rawurlencode($id).'/moves', $params);
							 | 
						|
								    }
							 | 
						|
								}
							 | 
						|
								
							 |