| 1 |
<?php |
| 2 |
|
| 3 |
/** |
| 4 |
* Add only the plugin specific bindings here. |
| 5 |
* |
| 6 |
* $app |
| 7 |
* @var $app FluentBoards\Framework\Foundation\App |
| 8 |
* @var $app->app FluentBoards\Framework\Foundation\ComponentBinder |
| 9 |
*/ |
| 10 |
|
| 11 |
$app->app->singleton('FluentBoards\App\Api\Api', function ($app) { |
| 12 |
return new FluentBoards\App\Api\Api($app); |
| 13 |
}); |
| 14 |
|
| 15 |
$app->app->alias('FluentBoards\App\Api\Api', 'api'); |