Skip to content

Commit 75f0f88

Browse files
committed
fix: Run cs:fix
Signed-off-by: Marcel Klehr <mklehr@gmx.net>
1 parent e9140e3 commit 75f0f88

1 file changed

Lines changed: 19 additions & 10 deletions

File tree

tests/stubs/oca_exapp.php

Lines changed: 19 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
namespace OCA\AppAPI\Db;
1111

1212
class ExApp implements \JsonSerializable {
13-
public function jsonSerialize(): array {}
13+
public function jsonSerialize(): array {
14+
}
1415
}
1516

1617
namespace OCA\AppAPI\Service;
@@ -21,7 +22,8 @@ public function jsonSerialize(): array {}
2122
use OCP\IRequest;
2223

2324
class ExAppService {
24-
public function getExApp(string $appId): ?ExApp {}
25+
public function getExApp(string $appId): ?ExApp {
26+
}
2527
}
2628

2729
class AppAPIService {
@@ -33,7 +35,8 @@ public function requestToExApp(
3335
array $params = [],
3436
array $options = [],
3537
?IRequest $request = null,
36-
): array|IResponse {}
38+
): array|IResponse {
39+
}
3740

3841
public function requestToExAppAsync(
3942
ExApp $exApp,
@@ -43,7 +46,8 @@ public function requestToExAppAsync(
4346
array $params = [],
4447
array $options = [],
4548
?IRequest $request = null,
46-
): IPromise {}
49+
): IPromise {
50+
}
4751
}
4852

4953
namespace OCA\AppAPI;
@@ -73,7 +77,8 @@ public function exAppRequest(
7377
array $params = [],
7478
array $options = [],
7579
?IRequest $request = null,
76-
): array|IResponse {}
80+
): array|IResponse {
81+
}
7782

7883
/**
7984
* Request to ExApp with AppAPI auth headers and ExApp user initialization
@@ -88,7 +93,8 @@ public function exAppRequestWithUserInit(
8893
array $params = [],
8994
array $options = [],
9095
?IRequest $request = null,
91-
): array|IResponse {}
96+
): array|IResponse {
97+
}
9298

9399
/**
94100
* Async request to ExApp with AppAPI auth headers
@@ -103,7 +109,8 @@ public function asyncExAppRequest(
103109
array $params = [],
104110
array $options = [],
105111
?IRequest $request = null,
106-
): IPromise {}
112+
): IPromise {
113+
}
107114

108115
/**
109116
* Async request to ExApp with AppAPI auth headers and ExApp user initialization
@@ -120,7 +127,8 @@ public function asyncExAppRequestWithUserInit(
120127
array $params = [],
121128
array $options = [],
122129
?IRequest $request = null,
123-
): IPromise {}
130+
): IPromise {
131+
}
124132

125133
/**
126134
* Get basic ExApp info by appid
@@ -129,5 +137,6 @@ public function asyncExAppRequestWithUserInit(
129137
*
130138
* @return array|null ExApp info (appid, version, name, enabled) or null if no ExApp found
131139
*/
132-
public function getExApp(string $appId): ?array {}
133-
}
140+
public function getExApp(string $appId): ?array {
141+
}
142+
}

0 commit comments

Comments
 (0)