Fix docblocks
parent
23339e44b8
commit
3577070efa
|
@ -32,7 +32,7 @@ class Link
|
|||
protected $target;
|
||||
|
||||
/**
|
||||
* @var ConstraintInterface|null
|
||||
* @var ConstraintInterface
|
||||
*/
|
||||
protected $constraint;
|
||||
|
||||
|
@ -49,11 +49,11 @@ class Link
|
|||
/**
|
||||
* Creates a new package link.
|
||||
*
|
||||
* @param string $source
|
||||
* @param string $target
|
||||
* @param ConstraintInterface|null $constraint Constraint applying to the target of this link
|
||||
* @param string $description Used to create a descriptive string representation
|
||||
* @param string|null $prettyConstraint
|
||||
* @param string $source
|
||||
* @param string $target
|
||||
* @param ConstraintInterface $constraint Constraint applying to the target of this link
|
||||
* @param string $description Used to create a descriptive string representation
|
||||
* @param string|null $prettyConstraint
|
||||
*/
|
||||
public function __construct($source, $target, ConstraintInterface $constraint, $description = 'relates to', $prettyConstraint = null)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue