2023-01-25 17:03:24 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
2024-06-21 16:58:11 +03:00
|
|
|
/**
|
|
|
|
* SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
*/
|
2023-01-25 17:03:24 +03:00
|
|
|
use Rector\Config\RectorConfig;
|
|
|
|
|
|
|
|
return static function (RectorConfig $rectorConfig): void {
|
|
|
|
$rectorConfig->paths([
|
|
|
|
__DIR__ . '/lib',
|
|
|
|
__DIR__ . '/tests',
|
|
|
|
]);
|
|
|
|
$rectorConfig->skip([
|
|
|
|
__DIR__ . '/lib/Vendor',
|
|
|
|
]);
|
|
|
|
};
|