fix docblock

This commit is contained in:
Julien Fastré 2018-07-17 17:10:11 +02:00
parent dce1447778
commit 75e87ac5ba

View File

@ -25,7 +25,7 @@ class PersonToIdTransformer implements DataTransformerInterface
/** /**
* Transforms an object (issue) to a string (id). * Transforms an object (issue) to a string (id).
* *
* @param Issue|null $issue * @param Person|null $issue
* @return string * @return string
*/ */
public function transform($issue) public function transform($issue)
@ -42,7 +42,7 @@ class PersonToIdTransformer implements DataTransformerInterface
* *
* @param string $id * @param string $id
* *
* @return Issue|null * @return Person|null
* *
* @throws TransformationFailedException if object (issue) is not found. * @throws TransformationFailedException if object (issue) is not found.
*/ */