fix wrong variable

This commit is contained in:
troosan 2017-11-22 08:41:42 +01:00
parent e07195c512
commit 38ea5ecb5f

View File

@ -167,7 +167,7 @@ class Spacing extends AbstractStyle
*/ */
public function getRule() public function getRule()
{ {
return $this->rule; return $this->lineRule;
} }
/** /**
@ -180,7 +180,7 @@ class Spacing extends AbstractStyle
*/ */
public function setRule($value = null) public function setRule($value = null)
{ {
$this->rule = value; $this->lineRule = $value;
return $this; return $this;
} }