| 1 | <?php | ||
| 9 | class AppProvider implements IAppProvider | ||
| 10 | { | ||
| 11 | public function all(): array | ||
| 17 | |||
| 18 | public function findById($appId): ?App | ||
| 22 | |||
| 23 | public function findByKey(string $appKey): ?App | ||
| 27 | |||
| 28 | public function findBySecret(string $appSecret): ?App | ||
| 32 | |||
| 33 | protected function instantiate(?array $appAttributes): ?App | ||
| 54 | } | ||
| 55 |