| Total Complexity | 2 |
| Total Lines | 13 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 12 | abstract class CallableFunction implements CallableUserFunctionInterface |
||
| 13 | { |
||
| 14 | /** @var ?BaseToken */ |
||
| 15 | protected $token; |
||
| 16 | |||
| 17 | 124 | public function __construct(BaseToken $token = null) |
|
| 20 | 124 | } |
|
| 21 | |||
| 22 | 100 | protected function parseParameter(array $parameters, int $numParam): ?BaseToken |
|
| 27 |