You are here

public function SassPropertyNode::getName in Sassy 7.3

Same name and namespace in other branches
  1. 7 phamlp/sass/tree/SassPropertyNode.php \SassPropertyNode::getName()

Returns the name of this property. If the property is in a namespace the namespace is prepended

Return value

string the name of this property

File

phpsass/tree/SassPropertyNode.php, line 161

Class

SassPropertyNode
SassPropertyNode class. Represents a CSS property. @package PHamlP @subpackage Sass.tree

Code

public function getName() {
  return $this->name;
}