| 1 | <?php | ||
| 9 | class ResolverFactory | ||
| 10 | { | ||
| 11 | private $config; | ||
| 12 | |||
| 13 | public function __construct(Config $config) | ||
| 17 | |||
| 18 | public function createAppResolver(): AppResolver | ||
| 22 | |||
| 23 | public function createSegmentResolver(): SegmentResolver | ||
| 27 | |||
| 28 | public function createDeviceSessionResolver(): DeviceSessionResolver | ||
| 32 | |||
| 33 | public function createDevicePurchaseResolver(): DevicePurchaseResolver | ||
| 37 | |||
| 38 | public function createDeviceFocusResolver(): DeviceFocusResolver | ||
| 42 | |||
| 43 | public function createNewDeviceResolver(): DeviceResolver | ||
| 47 | |||
| 48 | public function createExistingDeviceResolver(): DeviceResolver | ||
| 52 | |||
| 53 | public function createNotificationResolver(): NotificationResolver | ||
| 57 | |||
| 58 | public function createNotificationHistoryResolver(): NotificationHistoryResolver | ||
| 62 | } | ||
| 63 |