ScssFilter.php 551B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /*
  3. * This file is part of the Assetic package, an OpenSky project.
  4. *
  5. * (c) 2010-2012 OpenSky Project Inc
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Assetic\Filter\Sass;
  11. /**
  12. * Loads SCSS files.
  13. *
  14. * @author Kris Wallsmith <kris.wallsmith@gmail.com>
  15. */
  16. class ScssFilter extends SassFilter
  17. {
  18. public function __construct($sassPath = '/usr/bin/sass')
  19. {
  20. parent::__construct($sassPath);
  21. $this->setScss(true);
  22. }
  23. }