ScssFilter.php

Namespace

Assetic\Filter\Sass

File

drupal/core/vendor/kriswallsmith/assetic/src/Assetic/Filter/Sass/ScssFilter.php
View source
<?php

/*
 * This file is part of the Assetic package, an OpenSky project.
 *
 * (c) 2010-2013 OpenSky Project Inc
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */
namespace Assetic\Filter\Sass;


/**
 * Loads SCSS files.
 *
 * @link http://sass-lang.com/
 * @author Kris Wallsmith <kris.wallsmith@gmail.com>
 */
class ScssFilter extends SassFilter {
  public function __construct($sassPath = '/usr/bin/sass', $rubyPath = null) {
    parent::__construct($sassPath, $rubyPath);
    $this
      ->setScss(true);
  }

}

Classes

Namesort descending Description
ScssFilter Loads SCSS files.