mirror of
https://github.com/Icinga/icingaweb2.git
synced 2026-06-11 09:31:31 -04:00
Add SPDX license headers and mark source files as GPL-3.0-or-later to preserve the option to relicense under later GPL versions.
17 lines
314 B
PHP
17 lines
314 B
PHP
<?php
|
|
|
|
// SPDX-FileCopyrightText: 2021 Icinga GmbH <https://icinga.com>
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
namespace Icinga\Util;
|
|
|
|
use Icinga\Less\Visitor;
|
|
use lessc;
|
|
|
|
class LessParser extends lessc
|
|
{
|
|
public function __construct()
|
|
{
|
|
$this->setOption('plugins', [new Visitor()]);
|
|
}
|
|
}
|