# fluent-boards/2.0.1/app/Api/FBSApi.php

FluentBoards – Project Management, Task Management, Goal Tracking, Kanban Board, and, Team Collaboration, version 2.0.1. 24 lines.

- Page: https://pluginprobe.com/plugins/fluent-boards/2.0.1/code/app/Api/FBSApi.php
- Raw: https://pluginprobe.com/plugins/fluent-boards/2.0.1/raw/app/Api/FBSApi.php
- Modified: 2024-05-31T06:41:46+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-boards/2.0.1/code/app/Api/FBSApi.php#L10-L20`.

```php
<?php

namespace FluentBoards\App\Api;

final class FBSApi
{
    private $instance = null;

    public function __construct($instance)
    {
        $this->instance = $instance;
    }

    public function __call($method, $params)
    {
        try {
            return call_user_func_array([$this->instance, $method], $params);

        } catch (\Exception $e) {
            return null;
        }
    }
}

```
