ShopwareCli\Tests\PluginCreateTest::getConfigObject PHP Method

getConfigObject() private method

private getConfigObject ( ) : Configuration
return Shopware\PluginCreator\Struct\Configuration
    private function getConfigObject()
    {
        $config = new Configuration();
        $config->hasBackend = false;
        $config->hasApi = false;
        $config->hasWidget = false;
        $config->hasFrontend = false;
        $config->hasCommands = false;
        $config->hasModels = false;
        $config->name = 'SwagTest';
        return $config;
    }