Fix phpdoc comments

This commit is contained in:
Frederic Guillot
2015-06-19 18:47:01 -04:00
parent 9de6c71158
commit ff85518fa8
5 changed files with 15 additions and 14 deletions

View File

@@ -17,6 +17,7 @@ use Pimple\Container;
* @property \Core\Request $request * @property \Core\Request $request
* @property \Core\Session $session * @property \Core\Session $session
* @property \Core\Template $template * @property \Core\Template $template
* @property \Core\MemoryCache $memoryCache
* @property \Integration\BitbucketWebhook $bitbucketWebhook * @property \Integration\BitbucketWebhook $bitbucketWebhook
* @property \Integration\GithubWebhook $githubWebhook * @property \Integration\GithubWebhook $githubWebhook
* @property \Integration\GitlabWebhook $gitlabWebhook * @property \Integration\GitlabWebhook $gitlabWebhook
@@ -24,7 +25,7 @@ use Pimple\Container;
* @property \Integration\Jabber $jabber * @property \Integration\Jabber $jabber
* @property \Integration\Mailgun $mailgun * @property \Integration\Mailgun $mailgun
* @property \Integration\Postmark $postmark * @property \Integration\Postmark $postmark
* @property \Integration\SendgridWebhook $sendgridWebhook * @property \Integration\Sendgrid $sendgrid
* @property \Integration\SlackWebhook $slackWebhook * @property \Integration\SlackWebhook $slackWebhook
* @property \Integration\Smtp $smtp * @property \Integration\Smtp $smtp
* @property \Model\Acl $acl * @property \Model\Acl $acl

View File

@@ -35,9 +35,9 @@ class HttpClient extends Base
* Send a POST HTTP request encoded in JSON * Send a POST HTTP request encoded in JSON
* *
* @access public * @access public
* @param string $url * @param string $url
* @param array $data * @param array $data
* @param array $headers * @param string[] $headers
* @return string * @return string
*/ */
public function postJson($url, array $data, array $headers = array()) public function postJson($url, array $data, array $headers = array())
@@ -53,9 +53,9 @@ class HttpClient extends Base
* Send a POST HTTP request encoded in www-form-urlencoded * Send a POST HTTP request encoded in www-form-urlencoded
* *
* @access public * @access public
* @param string $url * @param string $url
* @param array $data * @param array $data
* @param array $headers * @param string[] $headers
* @return string * @return string
*/ */
public function postForm($url, array $data, array $headers = array()) public function postForm($url, array $data, array $headers = array())
@@ -71,9 +71,9 @@ class HttpClient extends Base
* Make the HTTP request * Make the HTTP request
* *
* @access private * @access private
* @param string $url * @param string $url
* @param array $content * @param string $content
* @param array $headers * @param string[] $headers
* @return string * @return string
*/ */
private function doRequest($url, $content, array $headers) private function doRequest($url, $content, array $headers)

View File

@@ -27,8 +27,8 @@ class Template extends Helper
* $template->render('template_name', ['bla' => 'value']); * $template->render('template_name', ['bla' => 'value']);
* *
* @access public * @access public
* @params string $__template_name Template name * @param string $__template_name Template name
* @params array $__template_args Key/Value map of template variables * @param array $__template_args Key/Value map of template variables
* @return string * @return string
*/ */
public function render($__template_name, array $__template_args = array()) public function render($__template_name, array $__template_args = array())

View File

@@ -229,7 +229,7 @@ class Notification extends Base
* *
* @access public * @access public
* @param integer $project_id Project id * @param integer $project_id Project id
* @param array $exclude_user_id User id to exclude * @param integer $exclude_user_id User id to exclude
* @return array * @return array
*/ */
public function getUsersWithNotificationEnabled($project_id, $exclude_user_id = 0) public function getUsersWithNotificationEnabled($project_id, $exclude_user_id = 0)

View File

@@ -247,7 +247,7 @@ class TaskFilter extends Base
* *
* @access public * @access public
* @param string $start * @param string $start
* @param strings $end * @param string $end
* @return TaskFilter * @return TaskFilter
*/ */
public function filterByStartDateRange($start, $end) public function filterByStartDateRange($start, $end)