Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/Rule/Rule.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class Rule implements Renderable, Commentable
private $sRule;

/**
* @var RuleValueList|string|null
* @var RuleValueList|null
*/
private $mValue;

Expand Down Expand Up @@ -171,15 +171,15 @@ public function getRule()
}

/**
* @return RuleValueList|string|null
* @return RuleValueList|null
*/
public function getValue()
{
return $this->mValue;
}

/**
* @param RuleValueList|string|null $mValue
* @param RuleValueList|null $mValue
*
* @return void
*/
Expand Down