23 lines
401 B
PHP
23 lines
401 B
PHP
<?php
|
|
|
|
namespace FluentCrm\App\Api;
|
|
|
|
final class FCApi
|
|
{
|
|
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;
|
|
}
|
|
}
|
|
}
|