Leafo\ScssPhp\Compiler::assertList PHP Method

assertList() public method

Assert value is a list
public assertList ( array $value ) : array
$value array
return array
    public function assertList($value)
    {
        if ($value[0] !== Type::T_LIST) {
            $this->throwError('expecting list');
        }
        return $value;
    }
Compiler