# fluent-support/trunk/app/Services/Parser/Parser.php

Fluent Support – Helpdesk &amp; Customer Support Ticket System, version trunk. 19 lines.

- Page: https://pluginprobe.com/plugins/fluent-support/trunk/code/app/Services/Parser/Parser.php
- Raw: https://pluginprobe.com/plugins/fluent-support/trunk/raw/app/Services/Parser/Parser.php
- Modified: 2021-11-12T14:57:38+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/trunk/code/app/Services/Parser/Parser.php#L10-L20`.

```php
<?php

namespace FluentSupport\App\Services\Parser;

class Parser
{
    public function __call($method, $params)
    {
        $instance = new ShortcodeParser;
        return call_user_func_array([$instance, $method], $params);
    }

    public static function __callStatic($method, $params)
    {
        $instance = new static;
        return call_user_func_array([$instance, $method], $params);
    }
}

```
