* @copyright Copyright (c) 2010 PBM Web Development * @license http://phamlp.googlecode.com/files/license.txt * @package PHamlP * @subpackage Sass.tree */ /** * SassElseNode class. * Represents Sass Else If and Else statements. * Else If and Else statement nodes are chained below the If statement node. * @package PHamlP * @subpackage Sass.tree */ class SassElseNode extends SassIfNode { /** * SassElseNode constructor. * @param object source token * @return SassElseNode */ public function __construct($token) { parent::__construct($token, false); } }