for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* MIT License
* Use of this software requires acceptance of the Evaluation License Agreement. See LICENSE file.
*/
namespace SprykerEco\Client\FactFinderSdk;
use Spryker\Zed\Kernel\AbstractBundleConfig;
use SprykerEco\Shared\FactFinderSdk\FactFinderSdkConstants;
class FactFinderSdkConfig extends AbstractBundleConfig
{
* @return string
public function getEnvironment()
return $this->get(FactFinderSdkConstants::ENVIRONMENT);
}
* @return array
public function getFactFinderConfiguration()
return $this->get(FactFinderSdkConstants::ENVIRONMENT . $this->getEnvironment());
public function getCsvDirectory()
return $this->get(FactFinderSdkConstants::CSV_DIRECTORY);
public function getLog4PhpConfigPath()
return $this->get(FactFinderSdkConstants::PHP_LOGGER_CONFIG_PATH);
public function getDefaultProductsPerPage()
return $this->get(FactFinderSdkConstants::DEFAULT_PRODUCTS_PER_PAGE);
public function getItemFields()
return $this->get(FactFinderSdkConstants::ITEM_FIELDS);
* @return bool
public function getRedirectIfOneResult()
return $this->get(FactFinderSdkConstants::REDIRECT_IF_ONE_RESULT, false);