| @@ -7,9 +7,8 @@ | ||
| 7 | 7 | |
| 8 | 8 | return array( |
| 9 | 9 | 'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php', |
| 10 | 10 | 'FluentBooking\\App\\App' => $baseDir . '/app/App.php', |
| 11 | - 'FluentBooking\\App\\ComposerScript' => $baseDir . '/app/ComposerScript.php', | |
| 12 | 11 | 'FluentBooking\\App\\Hooks\\Handlers\\ActivationHandler' => $baseDir . '/app/Hooks/Handlers/ActivationHandler.php', |
| 13 | 12 | 'FluentBooking\\App\\Hooks\\Handlers\\AdminMenuHandler' => $baseDir . '/app/Hooks/Handlers/AdminMenuHandler.php', |
| 14 | 13 | 'FluentBooking\\App\\Hooks\\Handlers\\BlockEditorHandler' => $baseDir . '/app/Hooks/Handlers/BlockEditorHandler.php', |
| 15 | 14 | 'FluentBooking\\App\\Hooks\\Handlers\\CleanupHandlers\\BookingCleaner' => $baseDir . '/app/Hooks/Handlers/CleanupHandlers/BookingCleaner.php', |
| @@ -37,8 +36,9 @@ | ||
| 37 | 36 | 'FluentBooking\\App\\Http\\Controllers\\Controller' => $baseDir . '/app/Http/Controllers/Controller.php', |
| 38 | 37 | 'FluentBooking\\App\\Http\\Controllers\\EventController' => $baseDir . '/app/Http/Controllers/EventController.php', |
| 39 | 38 | 'FluentBooking\\App\\Http\\Controllers\\IntegrationController' => $baseDir . '/app/Http/Controllers/IntegrationController.php', |
| 40 | 39 | 'FluentBooking\\App\\Http\\Controllers\\IntegrationManagerController' => $baseDir . '/app/Http/Controllers/IntegrationManagerController.php', |
| 40 | + 'FluentBooking\\App\\Http\\Controllers\\McpController' => $baseDir . '/app/Http/Controllers/McpController.php', | |
| 41 | 41 | 'FluentBooking\\App\\Http\\Controllers\\ReportController' => $baseDir . '/app/Http/Controllers/ReportController.php', |
| 42 | 42 | 'FluentBooking\\App\\Http\\Controllers\\SchedulesController' => $baseDir . '/app/Http/Controllers/SchedulesController.php', |
| 43 | 43 | 'FluentBooking\\App\\Http\\Controllers\\SettingsController' => $baseDir . '/app/Http/Controllers/SettingsController.php', |
| 44 | 44 | 'FluentBooking\\App\\Http\\Controllers\\WidgetController' => $baseDir . '/app/Http/Controllers/WidgetController.php', |
| @@ -61,10 +61,30 @@ | ||
| 61 | 61 | 'FluentBooking\\App\\Models\\Meta' => $baseDir . '/app/Models/Meta.php', |
| 62 | 62 | 'FluentBooking\\App\\Models\\Model' => $baseDir . '/app/Models/Model.php', |
| 63 | 63 | 'FluentBooking\\App\\Models\\Staff' => $baseDir . '/app/Models/Staff.php', |
| 64 | 64 | 'FluentBooking\\App\\Models\\User' => $baseDir . '/app/Models/User.php', |
| 65 | + 'FluentBooking\\App\\Modules\\MCP\\AbilitiesRegistrar' => $baseDir . '/app/Modules/MCP/AbilitiesRegistrar.php', | |
| 66 | + 'FluentBooking\\App\\Modules\\MCP\\MCPInit' => $baseDir . '/app/Modules/MCP/MCPInit.php', | |
| 67 | + 'FluentBooking\\App\\Modules\\MCP\\Prompts\\BookingPrompts' => $baseDir . '/app/Modules/MCP/Prompts/BookingPrompts.php', | |
| 68 | + 'FluentBooking\\App\\Modules\\MCP\\Support\\AvailabilityDiagnostics' => $baseDir . '/app/Modules/MCP/Support/AvailabilityDiagnostics.php', | |
| 69 | + 'FluentBooking\\App\\Modules\\MCP\\Support\\BookingProjector' => $baseDir . '/app/Modules/MCP/Support/BookingProjector.php', | |
| 70 | + 'FluentBooking\\App\\Modules\\MCP\\Support\\BookingWriter' => $baseDir . '/app/Modules/MCP/Support/BookingWriter.php', | |
| 71 | + 'FluentBooking\\App\\Modules\\MCP\\Support\\MCPHelper' => $baseDir . '/app/Modules/MCP/Support/MCPHelper.php', | |
| 72 | + 'FluentBooking\\App\\Modules\\MCP\\Support\\PermissionGate' => $baseDir . '/app/Modules/MCP/Support/PermissionGate.php', | |
| 73 | + 'FluentBooking\\App\\Modules\\MCP\\Support\\RestBridge' => $baseDir . '/app/Modules/MCP/Support/RestBridge.php', | |
| 74 | + 'FluentBooking\\App\\Modules\\MCP\\Support\\SlotLock' => $baseDir . '/app/Modules/MCP/Support/SlotLock.php', | |
| 75 | + 'FluentBooking\\App\\Modules\\MCP\\Support\\SlotResolver' => $baseDir . '/app/Modules/MCP/Support/SlotResolver.php', | |
| 76 | + 'FluentBooking\\App\\Modules\\MCP\\Support\\WriteGuard' => $baseDir . '/app/Modules/MCP/Support/WriteGuard.php', | |
| 77 | + 'FluentBooking\\App\\Modules\\MCP\\Tools\\BookingTools' => $baseDir . '/app/Modules/MCP/Tools/BookingTools.php', | |
| 78 | + 'FluentBooking\\App\\Modules\\MCP\\Tools\\BookingWriteTools' => $baseDir . '/app/Modules/MCP/Tools/BookingWriteTools.php', | |
| 79 | + 'FluentBooking\\App\\Modules\\MCP\\Tools\\ContextTools' => $baseDir . '/app/Modules/MCP/Tools/ContextTools.php', | |
| 80 | + 'FluentBooking\\App\\Modules\\MCP\\Tools\\EventTypeTools' => $baseDir . '/app/Modules/MCP/Tools/EventTypeTools.php', | |
| 81 | + 'FluentBooking\\App\\Modules\\MCP\\Tools\\ReportTools' => $baseDir . '/app/Modules/MCP/Tools/ReportTools.php', | |
| 82 | + 'FluentBooking\\App\\Modules\\MCP\\Tools\\SchedulingTools' => $baseDir . '/app/Modules/MCP/Tools/SchedulingTools.php', | |
| 83 | + 'FluentBooking\\App\\Modules\\MCP\\Tools\\SlotTools' => $baseDir . '/app/Modules/MCP/Tools/SlotTools.php', | |
| 65 | 84 | 'FluentBooking\\App\\Services\\AvailabilityService' => $baseDir . '/app/Services/AvailabilityService.php', |
| 66 | 85 | 'FluentBooking\\App\\Services\\BookingFieldService' => $baseDir . '/app/Services/BookingFieldService.php', |
| 86 | + 'FluentBooking\\App\\Services\\BookingReportService' => $baseDir . '/app/Services/BookingReportService.php', | |
| 67 | 87 | 'FluentBooking\\App\\Services\\BookingService' => $baseDir . '/app/Services/BookingService.php', |
| 68 | 88 | 'FluentBooking\\App\\Services\\CalendarEventService' => $baseDir . '/app/Services/CalendarEventService.php', |
| 69 | 89 | 'FluentBooking\\App\\Services\\CalendarService' => $baseDir . '/app/Services/CalendarService.php', |
| 70 | 90 | 'FluentBooking\\App\\Services\\ConditionAssesor' => $baseDir . '/app/Services/ConditionAssesor.php', |
| @@ -88,13 +108,15 @@ | ||
| 88 | 108 | 'FluentBooking\\App\\Services\\Integrations\\FluentCRM\\BookingCompletedTrigger' => $baseDir . '/app/Services/Integrations/FluentCRM/BookingCompletedTrigger.php', |
| 89 | 109 | 'FluentBooking\\App\\Services\\Integrations\\FluentCRM\\BookingRescheduledTrigger' => $baseDir . '/app/Services/Integrations/FluentCRM/BookingRescheduledTrigger.php', |
| 90 | 110 | 'FluentBooking\\App\\Services\\Integrations\\FluentCRM\\Bootstrap' => $baseDir . '/app/Services/Integrations/FluentCRM/Bootstrap.php', |
| 91 | 111 | 'FluentBooking\\App\\Services\\Integrations\\FluentCRM\\CancelBookingTrigger' => $baseDir . '/app/Services/Integrations/FluentCRM/CancelBookingTrigger.php', |
| 112 | + 'FluentBooking\\App\\Services\\Integrations\\FluentCRM\\CrmContactService' => $baseDir . '/app/Services/Integrations/FluentCRM/CrmContactService.php', | |
| 92 | 113 | 'FluentBooking\\App\\Services\\Integrations\\FluentCRM\\CrmSmartCode' => $baseDir . '/app/Services/Integrations/FluentCRM/CrmSmartCode.php', |
| 93 | 114 | 'FluentBooking\\App\\Services\\Integrations\\FluentCRM\\FluentCrmInit' => $baseDir . '/app/Services/Integrations/FluentCRM/FluentCrmInit.php', |
| 94 | 115 | 'FluentBooking\\App\\Services\\Integrations\\FluentCRM\\NewBookingTrigger' => $baseDir . '/app/Services/Integrations/FluentCRM/NewBookingTrigger.php', |
| 95 | 116 | 'FluentBooking\\App\\Services\\Integrations\\FluentCart\\Bootstrap' => $baseDir . '/app/Services/Integrations/FluentCart/Bootstrap.php', |
| 96 | 117 | 'FluentBooking\\App\\Services\\Integrations\\FluentCart\\CartHelper' => $baseDir . '/app/Services/Integrations/FluentCart/CartHelper.php', |
| 118 | + 'FluentBooking\\App\\Services\\Integrations\\FluentCart\\CustomerProfileService' => $baseDir . '/app/Services/Integrations/FluentCart/CustomerProfileService.php', | |
| 97 | 119 | 'FluentBooking\\App\\Services\\Integrations\\FluentCart\\Http\\Controller\\FluentCartController' => $baseDir . '/app/Services/Integrations/FluentCart/Http/Controller/FluentCartController.php', |
| 98 | 120 | 'FluentBooking\\App\\Services\\Integrations\\FluentForms\\BookingElement' => $baseDir . '/app/Services/Integrations/FluentForms/BookingElement.php', |
| 99 | 121 | 'FluentBooking\\App\\Services\\Integrations\\FluentForms\\FluentFormInit' => $baseDir . '/app/Services/Integrations/FluentForms/FluentFormInit.php', |
| 100 | 122 | 'FluentBooking\\App\\Services\\Integrations\\GlobalNotificationService' => $baseDir . '/app/Services/Integrations/GlobalNotificationService.php', |
| @@ -111,15 +133,19 @@ | ||
| 111 | 133 | 'FluentBooking\\App\\Services\\Libs\\RRule\\RSet' => $baseDir . '/app/Services/Libs/RRule/RSet.php', |
| 112 | 134 | 'FluentBooking\\App\\Services\\Libs\\RRule\\RfcParser' => $baseDir . '/app/Services/Libs/RRule/RfcParser.php', |
| 113 | 135 | 'FluentBooking\\App\\Services\\LocationService' => $baseDir . '/app/Services/LocationService.php', |
| 114 | 136 | 'FluentBooking\\App\\Services\\Mailer' => $baseDir . '/app/Services/Mailer.php', |
| 137 | + 'FluentBooking\\App\\Services\\NotificationGate' => $baseDir . '/app/Services/NotificationGate.php', | |
| 115 | 138 | 'FluentBooking\\App\\Services\\OnboardingService' => $baseDir . '/app/Services/OnboardingService.php', |
| 116 | 139 | 'FluentBooking\\App\\Services\\PermissionManager' => $baseDir . '/app/Services/PermissionManager.php', |
| 140 | + 'FluentBooking\\App\\Services\\PublicTransStrings' => $baseDir . '/app/Services/PublicTransStrings.php', | |
| 117 | 141 | 'FluentBooking\\App\\Services\\ReportingHelperTrait' => $baseDir . '/app/Services/ReportingHelperTrait.php', |
| 142 | + 'FluentBooking\\App\\Services\\RescheduleService' => $baseDir . '/app/Services/RescheduleService.php', | |
| 118 | 143 | 'FluentBooking\\App\\Services\\SanitizeService' => $baseDir . '/app/Services/SanitizeService.php', |
| 119 | 144 | 'FluentBooking\\App\\Services\\SummaryReportService' => $baseDir . '/app/Services/SummaryReportService.php', |
| 120 | 145 | 'FluentBooking\\App\\Services\\TimeSlotService' => $baseDir . '/app/Services/TimeSlotService.php', |
| 121 | 146 | 'FluentBooking\\App\\Services\\TransStrings' => $baseDir . '/app/Services/TransStrings.php', |
| 147 | + 'FluentBooking\\App\\Vite' => $baseDir . '/app/Vite.php', | |
| 122 | 148 | 'FluentBooking\\Database\\DBMigrator' => $baseDir . '/database/DBMigrator.php', |
| 123 | 149 | 'FluentBooking\\Database\\DBSeeder' => $baseDir . '/database/DBSeeder.php', |
| 124 | 150 | 'FluentBooking\\Database\\Migrations\\BookingActivityMigrator' => $baseDir . '/database/Migrations/BookingActivityMigrator.php', |
| 125 | 151 | 'FluentBooking\\Database\\Migrations\\BookingHostMigrator' => $baseDir . '/database/Migrations/BookingHostMigrator.php', |
| @@ -264,8 +290,18 @@ | ||
| 264 | 290 | 'FluentBooking\\Framework\\Foundation\\Concerns\\DynamicFacadeTrait' => $vendorDir . '/wpfluent/framework/src/WPFluent/Foundation/Concerns/DynamicFacadeTrait.php', |
| 265 | 291 | 'FluentBooking\\Framework\\Foundation\\Concerns\\FoundationTrait' => $vendorDir . '/wpfluent/framework/src/WPFluent/Foundation/Concerns/FoundationTrait.php', |
| 266 | 292 | 'FluentBooking\\Framework\\Foundation\\Concerns\\HooksRemovalTrait' => $vendorDir . '/wpfluent/framework/src/WPFluent/Foundation/Concerns/HooksRemovalTrait.php', |
| 267 | 293 | 'FluentBooking\\Framework\\Foundation\\Config' => $vendorDir . '/wpfluent/framework/src/WPFluent/Foundation/Config.php', |
| 294 | + 'FluentBooking\\Framework\\Foundation\\Exceptions\\BadGatewayHttpException' => $vendorDir . '/wpfluent/framework/src/WPFluent/Foundation/Exceptions/BadGatewayHttpException.php', | |
| 295 | + 'FluentBooking\\Framework\\Foundation\\Exceptions\\BadRequestHttpException' => $vendorDir . '/wpfluent/framework/src/WPFluent/Foundation/Exceptions/BadRequestHttpException.php', | |
| 296 | + 'FluentBooking\\Framework\\Foundation\\Exceptions\\ExceptionHandler' => $vendorDir . '/wpfluent/framework/src/WPFluent/Foundation/Exceptions/ExceptionHandler.php', | |
| 297 | + 'FluentBooking\\Framework\\Foundation\\Exceptions\\ForbiddenHttpException' => $vendorDir . '/wpfluent/framework/src/WPFluent/Foundation/Exceptions/ForbiddenHttpException.php', | |
| 298 | + 'FluentBooking\\Framework\\Foundation\\Exceptions\\HttpException' => $vendorDir . '/wpfluent/framework/src/WPFluent/Foundation/Exceptions/HttpException.php', | |
| 299 | + 'FluentBooking\\Framework\\Foundation\\Exceptions\\NotFoundHttpException' => $vendorDir . '/wpfluent/framework/src/WPFluent/Foundation/Exceptions/NotFoundHttpException.php', | |
| 300 | + 'FluentBooking\\Framework\\Foundation\\Exceptions\\ServiceUnavailableHttpException' => $vendorDir . '/wpfluent/framework/src/WPFluent/Foundation/Exceptions/ServiceUnavailableHttpException.php', | |
| 301 | + 'FluentBooking\\Framework\\Foundation\\Exceptions\\TooManyRequestsHttpException' => $vendorDir . '/wpfluent/framework/src/WPFluent/Foundation/Exceptions/TooManyRequestsHttpException.php', | |
| 302 | + 'FluentBooking\\Framework\\Foundation\\Exceptions\\UnauthorizedHttpException' => $vendorDir . '/wpfluent/framework/src/WPFluent/Foundation/Exceptions/UnauthorizedHttpException.php', | |
| 303 | + 'FluentBooking\\Framework\\Foundation\\Exceptions\\UnprocessableEntityHttpException' => $vendorDir . '/wpfluent/framework/src/WPFluent/Foundation/Exceptions/UnprocessableEntityHttpException.php', | |
| 268 | 304 | 'FluentBooking\\Framework\\Foundation\\ForbiddenException' => $vendorDir . '/wpfluent/framework/src/WPFluent/Foundation/ForbiddenException.php', |
| 269 | 305 | 'FluentBooking\\Framework\\Foundation\\Policy' => $vendorDir . '/wpfluent/framework/src/WPFluent/Foundation/Policy.php', |
| 270 | 306 | 'FluentBooking\\Framework\\Foundation\\RequestGuard' => $vendorDir . '/wpfluent/framework/src/WPFluent/Foundation/RequestGuard.php', |
| 271 | 307 | 'FluentBooking\\Framework\\Foundation\\UnAuthorizedException' => $vendorDir . '/wpfluent/framework/src/WPFluent/Foundation/UnAuthorizedException.php', |
| @@ -339,10 +375,12 @@ | ||
| 339 | 375 | 'FluentBooking\\Framework\\Support\\MultipleItemsFoundException' => $vendorDir . '/wpfluent/framework/src/WPFluent/Support/MultipleItemsFoundException.php', |
| 340 | 376 | 'FluentBooking\\Framework\\Support\\Number' => $vendorDir . '/wpfluent/framework/src/WPFluent/Support/Number.php', |
| 341 | 377 | 'FluentBooking\\Framework\\Support\\Once' => $vendorDir . '/wpfluent/framework/src/WPFluent/Support/Once.php', |
| 342 | 378 | 'FluentBooking\\Framework\\Support\\Path' => $vendorDir . '/wpfluent/framework/src/WPFluent/Support/Path.php', |
| 379 | + 'FluentBooking\\Framework\\Support\\Pipe' => $vendorDir . '/wpfluent/framework/src/WPFluent/Support/Pipe.php', | |
| 343 | 380 | 'FluentBooking\\Framework\\Support\\Pipeline' => $vendorDir . '/wpfluent/framework/src/WPFluent/Support/Pipeline.php', |
| 344 | 381 | 'FluentBooking\\Framework\\Support\\Pluralizer' => $vendorDir . '/wpfluent/framework/src/WPFluent/Support/Pluralizer.php', |
| 382 | + 'FluentBooking\\Framework\\Support\\Polyfills\\MBString\\Mbstring' => $vendorDir . '/wpfluent/framework/src/WPFluent/Support/Polyfills/MBString/Mbstring.php', | |
| 345 | 383 | 'FluentBooking\\Framework\\Support\\Reflector' => $vendorDir . '/wpfluent/framework/src/WPFluent/Support/Reflector.php', |
| 346 | 384 | 'FluentBooking\\Framework\\Support\\ReflectsClosures' => $vendorDir . '/wpfluent/framework/src/WPFluent/Support/ReflectsClosures.php', |
| 347 | 385 | 'FluentBooking\\Framework\\Support\\Sanitizer' => $vendorDir . '/wpfluent/framework/src/WPFluent/Support/Sanitizer.php', |
| 348 | 386 | 'FluentBooking\\Framework\\Support\\Serializer' => $vendorDir . '/wpfluent/framework/src/WPFluent/Support/Serializer.php', |