mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-05 19:42:12 +09:00
63 lines
968 B
PHP
63 lines
968 B
PHP
<?php
|
|
/**
|
|
* SCSSPHP
|
|
*
|
|
* Stub classes for backward compatibility
|
|
*
|
|
* @copyright 2012-2015 Leaf Corcoran
|
|
*
|
|
* @license http://opensource.org/licenses/MIT MIT
|
|
*
|
|
* @link http://leafo.github.io/scssphp
|
|
*/
|
|
|
|
// @codingStandardsIgnoreStart
|
|
/**
|
|
* @deprecated since 0.1.0
|
|
*/
|
|
class scssc extends \Leafo\ScssPhp\Compiler
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @deprecated since 0.1.0
|
|
*/
|
|
class scss_parser extends \Leafo\ScssPhp\Parser
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @deprecated since 0.1.0
|
|
*/
|
|
class scss_formatter extends \Leafo\ScssPhp\Formatter\Expanded
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @deprecated since 0.1.0
|
|
*/
|
|
class scss_formatter_nested extends \Leafo\ScssPhp\Formatter\Nested
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @deprecated since 0.1.0
|
|
*/
|
|
class scss_formatter_compressed extends \Leafo\ScssPhp\Formatter\Compressed
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @deprecated since 0.1.0
|
|
*/
|
|
class scss_formatter_crunched extends \Leafo\ScssPhp\Formatter\Crunched
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @deprecated since 0.1.0
|
|
*/
|
|
class scss_server extends \Leafo\ScssPhp\Server
|
|
{
|
|
}
|
|
// @codingStandardsIgnoreEnd
|