mirror of
https://github.com/elyby/accounts.git
synced 2024-11-10 07:22:00 +05:30
e2e31c3720
У EmailActivationFixture зафиксирован стандартный путь к файлу данных
18 lines
394 B
PHP
18 lines
394 B
PHP
<?php
|
|
namespace tests\codeception\common\_support;
|
|
|
|
use Codeception\Module;
|
|
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);
|
|
}
|
|
|
|
}
|