Merge branch 'MDL-81073' of https://github.com/paulholden/moodle
[moodle.git] / lib / scssphp / Block / ElseifBlock.php
blob4622bca7967bd66173fa901821ac197dd3b0f06f
1 <?php
3 /**
4 * SCSSPHP
6 * @copyright 2012-2020 Leaf Corcoran
8 * @license http://opensource.org/licenses/MIT MIT
10 * @link http://scssphp.github.io/scssphp
13 namespace ScssPhp\ScssPhp\Block;
15 use ScssPhp\ScssPhp\Block;
16 use ScssPhp\ScssPhp\Type;
18 /**
19 * @internal
21 class ElseifBlock extends Block
23 /**
24 * @var array
26 public $cond;
28 public function __construct()
30 $this->type = Type::T_ELSEIF;