Magento Extensions Rating 2024
EXTENSIONS BY CATEGORY
B2B (Business-To-Business)
Blog
Customer
ERP (Enterprise Resource Planning)
Mega Menu
One Step Checkout
Order
POS (Point Of Sale)
Search
Shopping Cart
Sitemap
SEO
Social
Stock & Inventory Management
EXTENSIONS BY DEVELOPER
aheadWorks
Amasty
Boost My Shop
BSS Commerce
Magestore
MageWorx
Mirasvit
Templates Master
Wyomind
XTENTO
Magento 2 Documentation
Magento 2 Documentation
2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
vendor
magento
magento2-base
dev
tests
static
framework
Magento
TestFramework
CodingStandard
Tool
CodeSniffer
LessWrapper.php
Go to the documentation of this file.
1
<?php
10
namespace
Magento\TestFramework\CodingStandard\Tool\CodeSniffer
;
11
18
class
LessWrapper
extends
Wrapper
19
{
20
const
LESS_FILE_EXTENSION
=
'less'
;
21
22
const
LESS_TOKENIZER
=
'CSS'
;
23
29
public
function
init
()
30
{
31
parent::init();
32
$this->config->extensions += [self::LESS_FILE_EXTENSION =>
self::LESS_TOKENIZER
];
33
}
34
}
Magento\TestFramework\CodingStandard\Tool\CodeSniffer\LessWrapper
Definition:
LessWrapper.php:18
Magento\TestFramework\CodingStandard\Tool\CodeSniffer\LessWrapper\LESS_FILE_EXTENSION
const LESS_FILE_EXTENSION
Definition:
LessWrapper.php:20
Magento\TestFramework\CodingStandard\Tool\CodeSniffer\LessWrapper\init
init()
Definition:
LessWrapper.php:29
Magento\TestFramework\CodingStandard\Tool\CodeSniffer\Wrapper
Definition:
Wrapper.php:18
Magento\TestFramework\CodingStandard\Tool\CodeSniffer\LessWrapper\LESS_TOKENIZER
const LESS_TOKENIZER
Definition:
LessWrapper.php:22
Magento\TestFramework\CodingStandard\Tool\CodeSniffer
Definition:
LessWrapper.php:10