Fix docblocks

main
Jordi Boggiano 4 years ago
parent 23339e44b8
commit 3577070efa
No known key found for this signature in database
GPG Key ID: 7BBD42C429EC80BC

@ -32,7 +32,7 @@ class Link
protected $target; protected $target;
/** /**
* @var ConstraintInterface|null * @var ConstraintInterface
*/ */
protected $constraint; protected $constraint;
@ -49,11 +49,11 @@ class Link
/** /**
* Creates a new package link. * Creates a new package link.
* *
* @param string $source * @param string $source
* @param string $target * @param string $target
* @param ConstraintInterface|null $constraint Constraint applying to the target of this link * @param ConstraintInterface $constraint Constraint applying to the target of this link
* @param string $description Used to create a descriptive string representation * @param string $description Used to create a descriptive string representation
* @param string|null $prettyConstraint * @param string|null $prettyConstraint
*/ */
public function __construct($source, $target, ConstraintInterface $constraint, $description = 'relates to', $prettyConstraint = null) public function __construct($source, $target, ConstraintInterface $constraint, $description = 'relates to', $prettyConstraint = null)
{ {

Loading…
Cancel
Save