Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
TokenizerSymbolsInterface.php
Go to the documentation of this file.
1 <?php
6 namespace Magento\Sniffs\Less;
7 
13 {
14  const TOKENIZER_CSS = 'CSS';
15 
19  const BITWISE_AND = '&';
20  const COLON = ';';
21  const OPEN_PARENTHESIS = '(';
22  const CLOSE_PARENTHESIS = ')';
23  const NEW_LINE = "\n";
24  const WHITESPACE = ' ';
25  const DOUBLE_WHITESPACE = ' ';
26  const INDENT_SPACES = ' ';
28 }