DataSift\Storyplayer\Cli\Feature_ActiveConfigSupport::initBeforeModulesAvailable PHP Method

initBeforeModulesAvailable() public method

public initBeforeModulesAvailable ( Phix_Project\CliEngine $engine, Phix_Project\CliEngine\CliCommand $command, DataSift\Storyplayer\Injectables $injectables )
$engine Phix_Project\CliEngine
$command Phix_Project\CliEngine\CliCommand
$injectables DataSift\Storyplayer\Injectables
    public function initBeforeModulesAvailable(CliEngine $engine, CliCommand $command, Injectables $injectables)
    {
        // at this point, we are assuming that the following is all true:
        //
        // a) storyplayer.json[.dist] has been loaded
        //    >> $injectables->defaultConfig (object)
        // b) .storyplayer/test-environments/<env>.json has been loaded
        //    >> $injectables->activeTestEnvironmentConfig (TestEnvironmentConfig)
        //
        // we now want to create $injectables->activeConfig
        $injectables->initActiveConfigSupport($injectables);
        // all done
    }