| 1 |
<?php |
| 2 |
|
| 3 |
// Register the classes to make available for the developers |
| 4 |
// The key will be used to access the class, for example: |
| 5 |
// FluentSupportApi('tickets') or FluentSupportApi->tickets |
| 6 |
|
| 7 |
return [ |
| 8 |
'tickets' => 'FluentSupport\App\Api\Classes\Tickets', |
| 9 |
'customers' => 'FluentSupport\App\Api\Classes\Customers', |
| 10 |
'agents' => 'FluentSupport\App\Api\Classes\Agents', |
| 11 |
'products' => 'FluentSupport\App\Api\Classes\Products', |
| 12 |
'tags' => 'FluentSupport\App\Api\Classes\Tags' |
| 13 |
]; |
| 14 |
|