12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- declare(strict_types=1);
- namespace OCP\Dashboard;
- interface IAPIWidget extends IWidget {
-
- public function getItems(string $userId, ?string $since = null, int $limit = 7): array;
- }
|