forked from leafo/scssphp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
classmap.php
62 lines (55 loc) · 965 Bytes
/
classmap.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?php
/**
* SCSSPHP
*
* Stub classes for backward compatibility
*
* @copyright 2012-2014 Leaf Corcoran
*
* @license http://opensource.org/licenses/gpl-license GPL-3.0
* @license http://opensource.org/licenses/MIT MIT
*
* @link http://leafo.net/scssphp
*/
/**
* @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
{
}