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

View File

@ -35,9 +35,9 @@ class HttpClient extends Base
* Send a POST HTTP request encoded in JSON
*
* @access public
* @param string $url
* @param array $data
* @param array $headers
* @param string $url
* @param array $data
* @param string[] $headers
* @return string
*/
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
*
* @access public
* @param string $url
* @param array $data
* @param array $headers
* @param string $url
* @param array $data
* @param string[] $headers
* @return string
*/
public function postForm($url, array $data, array $headers = array())
@ -71,9 +71,9 @@ class HttpClient extends Base
* Make the HTTP request
*
* @access private
* @param string $url
* @param array $content
* @param array $headers
* @param string $url
* @param string $content
* @param string[] $headers
* @return string
*/
private function doRequest($url, $content, array $headers)

View File

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

View File

@ -229,7 +229,7 @@ class Notification extends Base
*
* @access public
* @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
*/
public function getUsersWithNotificationEnabled($project_id, $exclude_user_id = 0)

View File

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