File tree Expand file tree Collapse file tree 6 files changed +357
-282
lines changed
Expand file tree Collapse file tree 6 files changed +357
-282
lines changed Original file line number Diff line number Diff line change 1717 include_once __DIR__ . '/src/Formatter/Expanded.php ' ;
1818 include_once __DIR__ . '/src/Formatter/Nested.php ' ;
1919 include_once __DIR__ . '/src/Formatter/OutputBlock.php ' ;
20+ include_once __DIR__ . '/src/Node.php ' ;
2021 include_once __DIR__ . '/src/Parser.php ' ;
22+ include_once __DIR__ . '/src/Type.php ' ;
2123 include_once __DIR__ . '/src/Util.php ' ;
2224 include_once __DIR__ . '/src/Version.php ' ;
2325 include_once __DIR__ . '/src/Server.php ' ;
Original file line number Diff line number Diff line change 1818 */
1919class Block
2020{
21- const T_MEDIA = 'media ' ;
22- const T_MIXIN = 'mixin ' ;
23- const T_INCLUDE = 'include ' ;
24- const T_FUNCTION = 'function ' ;
25- const T_EACH = 'each ' ;
26- const T_WHILE = 'while ' ;
27- const T_FOR = 'for ' ;
28- const T_IF = 'if ' ;
29- const T_ELSE = 'else ' ;
30- const T_ELSEIF = 'elseif ' ;
31- const T_DIRECTIVE = 'directive ' ;
32- const T_NESTED_PROPERTY = 'nestedprop ' ;
33- const T_BLOCK = 'block ' ;
34- const T_ROOT = 'root ' ;
35- const T_NULL = null ;
36- const T_COMMENT = 'comment ' ;
37-
3821 /**
3922 * @var string
4023 */
You can’t perform that action at this time.
0 commit comments