felixdorn/call-method

call-method

1.0.0 2021-05-16 09:02 UTC

This package is auto-updated.

Last update: 2024-09-16 16:19:26 UTC


README

Tests Formats Version Total Downloads License

安装

需要 PHP 8.0.0+

您可以通过composer安装此包

composer require felixdorn/call-method

使用方法

class BladeViewCompiler {
    protected function compileComponentString(string $value): string {
        return $value;
    }
}

$compiler = new BladeViewCompiler();

call($compiler, 'compileComponentString', 'value'); // returns "value"

测试

composer test

call-methodFélix Dorn 创建,遵循 MIT许可证