$tags Tags can be used to group routes inside a scope * for easier implementation and reviewing of the API specification. * It defaults to the controller name in snake_case (should be `a-z` and underscore only). * @since 28.0.0 */ public function __construct( protected string $scope = self::SCOPE_DEFAULT, protected ?array $tags = null, ) { } /** * @since 28.0.0 */ public function getScope(): string { return $this->scope; } /** * @return ?list * @since 28.0.0 */ public function getTags(): ?array { return $this->tags; } } -repair-middleware'>add-caldav-repair-middleware Nextcloud server, a safe home for all your data: https://github.com/nextcloud/serverwww-data
aboutsummaryrefslogtreecommitdiffstats
path: root/core/Command/Maintenance/UpdateTheme.php
blob: f819b9c8e584985dd2403eae8f42eabd5d54da34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39