Files
nextcloud-mail/rector.php
Andy Scherzinger c94f5e0537 chore: Add SPDX header
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
2024-06-21 19:50:19 +02:00

19 lines
382 B
PHP

<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
use Rector\Config\RectorConfig;
return static function (RectorConfig $rectorConfig): void {
$rectorConfig->paths([
__DIR__ . '/lib',
__DIR__ . '/tests',
]);
$rectorConfig->skip([
__DIR__ . '/lib/Vendor',
]);
};