for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* This file is part of the Spryker Commerce OS.
* For full license information, please view the LICENSE file that was distributed with this source code.
*/
namespace Pyz\Zed\DynamicEntity;
use Spryker\Zed\DynamicEntity\DynamicEntityConfig as SprykerDynamicEntityConfig;
class DynamicEntityConfig extends SprykerDynamicEntityConfig
{
* @var string
protected const CONFIGURATION_FILE_PATH = '%s/src/Pyz/Zed/DynamicEntity/data/installer/configuration.json';
* @return string
public function getInstallerConfigurationDataFilePath(): string
return sprintf(static::CONFIGURATION_FILE_PATH, APPLICATION_ROOT_DIR);
}