Devin Smith 41e8600690 more deployment changes
partial #3787
added support for deployment to any repo path.
added tagging system
2014-11-18 16:08:23 -08:00

52 lines
1.8 KiB
PHP
Executable File

<?php
namespace Github\Api\PullRequest;
use Github\Api\AbstractApi;
use Github\Exception\MissingArgumentException;
/**
* @link http://developer.github.com/v3/pulls/comments/
* @author Joseph Bielawski <stloyd@gmail.com>
*/
class Comments extends AbstractApi
{
public function all($username, $repository, $pullRequest)
{
return $this->get('repos/'.rawurlencode($username).'/'.rawurlencode($repository).'/pulls/'.rawurlencode($pullRequest).'/comments');
}
public function show($username, $repository, $comment)
{
return $this->get('repos/'.rawurlencode($username).'/'.rawurlencode($repository).'/pulls/comments/'.rawurlencode($comment));
}
public function create($username, $repository, $pullRequest, array $params)
{
if (!isset($params['body'])) {
throw new MissingArgumentException('body');
}
// If `in_reply_to` is set, other options are not necessary anymore
if (!isset($params['in_reply_to']) && !isset($params['commit_id'], $params['path'], $params['position'])) {
throw new MissingArgumentException(array('commit_id', 'path', 'position'));
}
return $this->post('repos/'.rawurlencode($username).'/'.rawurlencode($repository).'/pulls/'.rawurlencode($pullRequest).'/comments', $params);
}
public function update($username, $repository, $comment, array $params)
{
if (!isset($params['body'])) {
throw new MissingArgumentException('body');
}
return $this->patch('repos/'.rawurlencode($username).'/'.rawurlencode($repository).'/pulls/comments/'.rawurlencode($comment), $params);
}
public function remove($username, $repository, $comment)
{
return $this->delete('repos/'.rawurlencode($username).'/'.rawurlencode($repository).'/pulls/comments/'.rawurlencode($comment));
}
}