# fluent-support/2.2.0/app/Api/config.php

Fluent Support – Helpdesk &amp; Customer Support Ticket System, version 2.2.0. 14 lines.

- Page: https://pluginprobe.com/plugins/fluent-support/2.2.0/code/app/Api/config.php
- Raw: https://pluginprobe.com/plugins/fluent-support/2.2.0/raw/app/Api/config.php
- Modified: 2022-01-19T11:32:28+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/fluent-support/2.2.0/code/app/Api/config.php#L10-L20`.

```php
<?php

// Register the classes to make available for the developers
// The key will be used to access the class, for example:
// FluentSupportApi('tickets') or FluentSupportApi->tickets

return [
    'tickets'   => 'FluentSupport\App\Api\Classes\Tickets',
    'customers' => 'FluentSupport\App\Api\Classes\Customers',
    'agents'    => 'FluentSupport\App\Api\Classes\Agents',
    'products'  => 'FluentSupport\App\Api\Classes\Products',
    'tags'      => 'FluentSupport\App\Api\Classes\Tags'
];

```
