Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 19 additions & 19 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions src/ControllerMethodParameter.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
* SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/

namespace OpenAPIExtractor;

class ControllerMethodParameter {
Expand Down
1 change: 1 addition & 0 deletions src/ControllerMethodResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
* SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/

namespace OpenAPIExtractor;

class ControllerMethodResponse {
Expand Down
1 change: 1 addition & 0 deletions src/Logger.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
* SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/

namespace OpenAPIExtractor;

class Logger {
Expand Down
1 change: 1 addition & 0 deletions src/LoggerLevel.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
* SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/

namespace OpenAPIExtractor;

enum LoggerLevel: string {
Expand Down
1 change: 1 addition & 0 deletions src/UnsupportedExprException.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/

namespace OpenAPIExtractor;

use Exception;
Expand Down
1 change: 0 additions & 1 deletion tests/lib/Controller/PlainController.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ public function ignored(): Response {
return new Response();
}


/**
* Route with manual scope to not get ignored
*
Expand Down
1 change: 0 additions & 1 deletion tests/lib/Controller/SettingsController.php
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,6 @@ public function parameterRequestBody(int $simple, array $complex): DataResponse
return new DataResponse();
}


/**
* Route with object defaults
*
Expand Down
Loading