File: /home/pokaorgani/public_html/wp-content/plugins/megamenu/classes/scss/1.11.1/src/Block/IfBlock.php
<?php
/**
* SCSSPHP
*
* @copyright 2012-2020 Leaf Corcoran
*
* @license http://opensource.org/licenses/MIT MIT
*
* @link http://scssphp.github.io/scssphp
*/
namespace MMMScssPhp\ScssPhp\Block;
use MMMScssPhp\ScssPhp\Block;
use MMMScssPhp\ScssPhp\Type;
/**
* @internal
*/
class IfBlock extends Block
{
/**
* @var array
*/
public $cond;
/**
* @var array<ElseifBlock|ElseBlock>
*/
public $cases = [];
public function __construct()
{
$this->type = Type::T_IF;
}
}