| 1 | <?php |
||
| 18 | class MethodInvocationComposer |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * Composes a class with specific features and returns its name |
||
| 22 | * |
||
| 23 | * @param bool $isStatic Static or dynamic method |
||
| 24 | * @param bool $useSplatOperator Enables usage of optimized invocation with splat operator |
||
| 25 | * @param bool $useVariadics Enables usage of optimized invocation with variadic args |
||
| 26 | * |
||
| 27 | * @return string Name of composed class |
||
| 28 | */ |
||
| 29 | public static function compose($isStatic, $useSplatOperator, $useVariadics) |
||
| 47 | } |
||
| 48 |