Skip to content

Commit

Permalink
Fix PHPdocs messages
Browse files Browse the repository at this point in the history
  • Loading branch information
WBerredo committed Dec 22, 2014
1 parent e99058a commit 4e55ef3
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@
* @View(statusCode=204)
*
* @param Request $request
* @param $entity
* @internal param $id
* @param $id
*
* @return Response
{% endblock phpdoc_method_header %}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
* @View(serializerEnableMaxDepthChecks=true)
*
* @return Response
* @param $id
{% endblock phpdoc_method_header %}
{% block phpdoc_method_annotations %}
{% if 'annotation' == format %}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@

/**
{% block phpdoc_method_header %}
* Get a entity or throw a exception
*
* @param $id
* @return $entity
{% endblock phpdoc_method_header %}
*/
{% block method_definition %}
protected function getOr404($id)
{% endblock method_definition %}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* @View(serializerEnableMaxDepthChecks=true)
*
* @param Request $request
* @param $entity
* @param $id
*
* @return Response
{% endblock phpdoc_method_header %}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
* @View(serializerEnableMaxDepthChecks=true)
*
* @param Request $request
* @param $entity
* @param $id
*
* @return Response
{% endblock phpdoc_method_header %}
Expand Down

0 comments on commit 4e55ef3

Please sign in to comment.