We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eec2ad3 commit b545e0aCopy full SHA for b545e0a
api-alarm-integration.php
@@ -12,6 +12,8 @@
12
* Text Domain: api-alarm-integration
13
* Domain Path: /languages
14
*/
15
+use WpService\Implementations\NativeWpService;
16
+use WpUtilService\WpUtilService;
17
18
// Protect agains direct file access
19
if (! defined('WPINC')) {
@@ -59,5 +61,8 @@
59
61
$acfExportManager->import();
60
62
});
63
64
+$wpService = new NativeWpService();
65
+$wpUtilService = new WpUtilService($wpService);
66
+
67
// Start application
-new ApiAlarmIntegration\App();
68
+new ApiAlarmIntegration\App($wpUtilService->enqueue(__DIR__));
0 commit comments