Codeception\Command\WPBootstrap::getFunctionalSuiteConfig PHP Метод

getFunctionalSuiteConfig() защищенный Метод

protected getFunctionalSuiteConfig ( $actor ) : array
$actor
Результат array
    protected function getFunctionalSuiteConfig($actor)
    {
        $className = $actor . $this->actorSuffix;
        $defaults = ['actor' => $actor, 'className' => $className, 'namespace' => $this->namespace];
        $wpdbDefaults = $this->getWpdbConfigDefaults();
        $wordpressDefaults = $this->getWordpressConfigDefaults();
        $settings = array_merge($defaults, $wpdbDefaults, $wordpressDefaults, $this->userConfig);
        return (new FunctionalSuiteConfig($settings))->produce();
    }