mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-05-06 15:50:10 +02:00
16 lines
254 B
PHP
16 lines
254 B
PHP
<?php
|
|
/* Icinga Web 2 | (c) 2021 Icinga GmbH | GPLv2+ */
|
|
|
|
namespace Icinga\Util;
|
|
|
|
use Icinga\Less\Visitor;
|
|
use lessc;
|
|
|
|
class LessParser extends lessc
|
|
{
|
|
public function __construct()
|
|
{
|
|
$this->setOption('plugins', [new Visitor()]);
|
|
}
|
|
}
|