2021-01-15 10:32:06 -05:00
|
|
|
<?php
|
2026-03-26 12:46:27 -04:00
|
|
|
|
|
|
|
|
// SPDX-FileCopyrightText: 2021 Icinga GmbH <https://icinga.com>
|
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
2021-01-15 10:32:06 -05:00
|
|
|
|
|
|
|
|
namespace Icinga\Util;
|
|
|
|
|
|
2021-12-01 08:24:57 -05:00
|
|
|
use Icinga\Less\Visitor;
|
2021-01-15 10:32:06 -05:00
|
|
|
use lessc;
|
|
|
|
|
|
|
|
|
|
class LessParser extends lessc
|
|
|
|
|
{
|
2022-04-29 05:12:29 -04:00
|
|
|
public function __construct()
|
2021-06-23 04:59:47 -04:00
|
|
|
{
|
2022-04-29 05:12:29 -04:00
|
|
|
$this->setOption('plugins', [new Visitor()]);
|
2021-06-23 04:59:47 -04:00
|
|
|
}
|
2021-01-15 10:32:06 -05:00
|
|
|
}
|