mirror of
https://github.com/elyby/accounts.git
synced 2024-11-06 16:21:08 +05:30
17 lines
358 B
PHP
17 lines
358 B
PHP
<?php
|
|
namespace common\tests\_support;
|
|
|
|
use ReflectionClass;
|
|
|
|
trait ProtectedCaller {
|
|
|
|
protected function callProtected($object, string $function, ...$args) {
|
|
$class = new ReflectionClass($object);
|
|
$method = $class->getMethod($function);
|
|
$method->setAccessible(true);
|
|
|
|
return $method->invokeArgs($object, $args);
|
|
}
|
|
|
|
}
|